-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.04 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "linz-address-import",
"version": "2.0.0",
"author": "Kyle Hensel",
"license": "MIT",
"type": "module",
"scripts": {
"request-linz-export": "tsx src/download/requestLinzExport",
"download-linz": "tsx src/download/downloadLinzExport",
"download-planet": "sh src/download/download-planet.sh",
"preprocess0": "tsx src/preprocess/fetchAndSaveAddressIgnoreList",
"preprocess1": "tsx src/preprocess/processOsmData",
"preprocess2": "tsx src/preprocess/processLinzData",
"preprocess3": "tsx src/preprocess/stackLinzData",
"preprocess": "npm run preprocess0 && npm run preprocess1 && npm run preprocess2 && npm run preprocess3",
"conflate": "tsx src/conflate",
"extralayers": "tsx src/extraLayers",
"action": "tsx src/action",
"upload": "tsx src/upload",
"changelog": "tsx src/changelog",
"changesetWatch": "tsx src/changesetWatch",
"lint": "eslint . && tsc",
"pretest": "cp src/__tests__/bin/osmconvert src/__tests__/bin/osmconvert2 && chmod u+x src/__tests__/bin/osmconvert2",
"test": "vitest",
"test:ci": "vitest run --coverage"
},
"dependencies": {
"@azure/storage-blob": "^12.13.0",
"@id-sdk/geo": "^3.0.0-pre.10",
"@id-sdk/vector": "^3.0.0-pre.10",
"adm-zip": "^0.5.14",
"csv-parser": "^3.0.0",
"dotenv": "^16.0.3",
"koordinates-api": "^0.0.1",
"mime-types": "^2.1.35",
"osm-api": "^1.0.5",
"pbf2json": "^6.10.0",
"through2": "^4.0.2",
"unzipper": "^0.10.11",
"which-polygon": "^2.2.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/mime-types": "^2.1.1",
"@types/node": "^22.4.0",
"@types/pbf2json": "^6.6.1",
"@types/through2": "^2.0.38",
"@types/unzipper": "^0.10.5",
"@types/which-polygon": "^2.2.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.9.0",
"eslint-config-kyle": "^25.0.0-beta2",
"tsx": "^4.17.0",
"typescript": "^4.9.4",
"vitest": "^2.0.5"
},
"prettier": "eslint-config-kyle/prettier",
"engineStrict": true,
"engines": {
"node": ">=v20.11.0"
}
}