-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "@codustry/geojson-toolkit",
"version": "0.2.6",
"description": "an interactive cli/library toolkit to interact with geojson via cli, primary for optimization, mapbox-prefer format",
"main": "./dist/index.js",
"files": [
"./dist/**/*"
],
"bin": {
"geojson-toolkit": "dist/index.js"
},
"scripts": {
"build": "npx tsc -b ./tsconfig.json",
"cmd": "ts-node ./src/index.ts",
"run": "node ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codustry/geojson-toolkit.git"
},
"keywords": [
"geojson"
],
"author": "Nutchanon Ninyawee <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/codustry/geojson-toolkit/issues"
},
"homepage": "https://github.com/codustry/geojson-toolkit#readme",
"dependencies": {
"@mapbox/geojsonhint": "^3.3.0",
"commander": "^12.0.0",
"figlet": "^1.7.0"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/node": "^20.11.20",
"@types/geojson": "^7946.0.14",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}