-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 919 Bytes
/
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
{
"name": "@versatiles/render",
"version": "0.0.1",
"description": "Renders vector tiles",
"bin": {},
"prefix": "./",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"lint": "eslint . --color",
"start": "tsx src/index.ts"
},
"type": "module",
"author": "Michael Kreil <[email protected]>",
"license": "Unlicense",
"engines": {
"node": ">= 18"
},
"dependencies": {
"@mapbox/vector-tile": "^1.3.1",
"@maplibre/maplibre-gl-style-spec": "^19.3.3",
"@versatiles/container": "^1.0.2",
"brace-expansion": "^3.0.0",
"commander": "^11.1.0",
"pbf": "^3.2.1"
},
"devDependencies": {
"@types/color": "^3.0.6",
"@types/mapbox__vector-tile": "^1.3.4",
"@types/node": "^20.9.0",
"@types/pbf": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"tsx": "^4.1.1",
"typescript": "^5.2.2"
}
}