-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "@geolonia/gsi-mbtiles-tool",
"version": "0.0.12",
"main": "dist/index.js",
"repository": "https://github.com/geolonia/gsi-mbtiles-tool",
"author": "Geolonia <[email protected]>",
"license": "MIT",
"private": false,
"bin": {
"gsi-mbtiles-tool": "dist/bin/run.js"
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "rm -r dist; tsc && chmod +x dist/bin/run.js",
"start": "ts-node src/bin/run.ts"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/async": "^3.2.20",
"@types/better-sqlite3": "^7.6.4",
"@types/cli-progress": "^3.11.0",
"@types/concat-stream": "^2.0.0",
"@types/mapbox__sphericalmercator": "^1.2.0",
"@types/node": "^16",
"@types/pngjs": "^6.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@jorgeferrero/stream-to-buffer": "^2.0.6",
"@mapbox/sphericalmercator": "^1.2.0",
"async": "^3.2.2",
"better-sqlite3": "^8.5.2",
"cli-progress": "^3.12.0",
"commander": "^10.0.1",
"concat-stream": "^2.0.0",
"csv-parse": "^5.5.0",
"dayjs": "^1.11.9",
"pngjs": "^7.0.0",
"undici": "^5.23.0"
},
"files": [
"dist"
]
}