gadm-ts/package.json
2026-03-21 10:52:03 +01:00

36 lines
1019 B
JSON

{
"name": "@polymech/gadm",
"version": "1.0.0",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"bin": {
"gadm-boundaries": "scripts/boundaries.ts"
},
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"tests": "vitest run",
"test:boundaries": "vitest run src/__tests__/boundary.test.ts",
"boundaries": "npx tsx scripts/boundaries.ts",
"refresh": "npx tsx scripts/refresh-database.ts"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/yargs": "^17.0.35",
"better-sqlite3": "^12.8.0",
"hyparquet-writer": "^0.13.0",
"typescript": "^5.0.0",
"vitest": "^4.1.0",
"yargs": "^18.0.0"
},
"dependencies": {
"@turf/turf": "^7.3.4",
"hyparquet": "^1.25.1",
"polygon-clipping": "^0.15.7",
"zod": "^4.3.6"
}
}