-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.03 KB
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
{
"name": "scbdata",
"version": "0.1.2",
"description": "CLI for DeSO lookups, address extraction, and election result aggregation.",
"license": "MIT",
"type": "module",
"bin": {
"scbdata": "./dist/index.js"
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/index.ts",
"package:release": "node scripts/package-release.mjs",
"generate:homebrew": "node scripts/generate-homebrew-formula.mjs",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@turf/area": "^7.2.0",
"@turf/bbox": "^7.2.0",
"@turf/boolean-point-in-polygon": "^7.2.0",
"@turf/helpers": "^7.2.0",
"@turf/intersect": "^7.2.0",
"adm-zip": "^0.5.16",
"cheerio": "^1.1.2",
"commander": "^14.0.1",
"fast-xml-parser": "^5.2.5",
"proj4": "^2.19.10",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/node": "^24.5.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}