forked from flatgeobuf/flatgeobuf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.37 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "flatgeobuf",
"version": "3.27.2",
"description": "A performant binary encoding for geographic data",
"scripts": {
"build": "tsc -p config/tsconfig.mjs.json && rollup -c config/rollup.config.js",
"lint": "eslint ./src/ts --ext .js,.jsx,.ts,.tsx",
"test": "vitest",
"coverage": "vitest run --coverage",
"typedoc": "typedoc --tsconfig config/tsconfig.typedoc.json",
"server": "ws",
"fmt": "prettier --write src/ts",
"fmt-check": "prettier --check src/ts"
},
"files": [
"lib/**/*",
"dist/**/*"
],
"types": "lib/mjs/flatgeobuf.d.ts",
"module": "lib/mjs/flatgeobuf.js",
"main": "lib/mjs/flatgeobuf.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/flatgeobuf/flatgeobuf.git"
},
"keywords": [
"spatial",
"geometry",
"feature",
"flatbuffers",
"serialization",
"binary",
"performance"
],
"author": "Björn Harrtell",
"contributors": [
"Pirmin Kalberer",
"Michael Kirk",
"Gabriel Roldan",
"Jared Erickson",
"Karsten Pihl",
"Xavier Fischer",
"Dustin Carlino",
"Peter Brodersen",
"Corey Farwell",
"Even Rouault",
"James Hughes",
"James Gill",
"Clemens Portele",
"Horace Williams"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/flatgeobuf/flatgeobuf/issues"
},
"homepage": "https://github.com/flatgeobuf/flatgeobuf#readme",
"dependencies": {
"@repeaterjs/repeater": "3.0.5",
"flatbuffers": "23.5.26",
"slice-source": "0.4.1"
},
"peerDependencies": {
"ol": "^7 || ^8"
},
"devDependencies": {
"@babel/core": "7.23.6",
"@babel/preset-env": "7.23.6",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/geojson": "7946.0.13",
"@types/node": "20.10.5",
"@types/node-fetch": "^2.6.9",
"@types/stream-buffers": "3.0.7",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"@vitest/coverage-v8": "^1.1.0",
"eslint": "8.56.0",
"jsts": "2.11.0",
"local-web-server": "^5.3.0",
"node-fetch": "^3.3.2",
"ol": "8.2.0",
"prettier": "3.1.1",
"rollup": "4.9.1",
"stream-buffers": "3.0.2",
"typedoc": "0.25.4",
"typescript": "5.3.3",
"vitest": "^1.1.0",
"web-streams-polyfill": "3.2.1"
}
}