-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.13 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
{
"name": "mapillary-missing-streets",
"version": "0.1.0",
"description": "A set of tools to generate a list of streets that are missing mapillary street-level imagery, filtered by type (360°) and date (newer than 1.5 years).",
"type": "module",
"scripts": {
"mapillary": "bun mapillary/mapillary.ts",
"mapillary:retry": "bun mapillary/retryApiErrors.ts",
"mapillary:update": "bun mapillary/update.ts && go run mapillary/updateDeduplicate.go",
"roads": "bun roads/roads.ts",
"matching": "bun matching/matching.ts",
"upload": "bun upload/createPmtiles.ts && bun upload/upload.ts",
"type-check": "tsc --noEmit"
},
"author": "Tobias Jordans <[email protected]>",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@aws-sdk/client-s3": "^3.430.0",
"@total-typescript/ts-reset": "^0.5.1",
"@turf/turf": "7.0.0-alpha.2",
"@types/node": "^20.8.6",
"bun-types": "latest",
"date-fns": "^2.30.0",
"geojson2ndjson": "^0.5.0",
"osmtogeojson": "^3.0.0-beta.5",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}