-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.1 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
{
"name": "ds-api-client",
"type": "module",
"version": "0.1.0",
"scripts": {
"ds": "bun src/command.ts",
"compile:windows": "bun build ./src/command.ts --compile --minify --target bun-windows-x64-baseline --outfile ds-api-client.exe",
"compile:linux": "bun build ./src/command.ts --compile --minify --target bun-linux-x64 --outfile ds-api-client-linux-x64",
"compile:darwin": "bun build ./src/command.ts --compile --minify --target bun-darwin-arm64 --outfile ds-api-client-darwin-arm64",
"up": "npx npm-check-updates --interactive --format group"
},
"devDependencies": {
"@commander-js/extra-typings": "^12.0.1",
"@types/cli-progress": "^3.11.5",
"@types/geojson": "^7946.0.14",
"@types/proj4": "^2.5.5",
"bun-types": "latest",
"typescript": "^5.4.5"
},
"trustedDependencies": ["sharp"],
"dependencies": {
"@turf/turf": "^6.5.0",
"chrono-node": "^2.7.5",
"cli-progress": "^3.12.0",
"commander": "^12.0.0",
"console-table-printer": "^2.12.0",
"geojson2svg": "^2.0.1",
"proj4": "^2.11.0",
"remeda": "^1.61.0",
"zod": "^3.23.6"
}
}