-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.31 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "shp-to-3dtiles",
"version": "1.0.0",
"description": "SHP to 3D Tiles 1.1 converter with Draco, KTX2, and metadata support",
"type": "module",
"main": "./dist/src/index.js",
"bin": {
"shp-to-3dtiles": "./dist/bin/shp-to-3dtiles.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx bin/shp-to-3dtiles.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/ --ext .ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"3dtiles",
"shapefile",
"gltf",
"cesium",
"gis"
],
"author": "",
"license": "MIT",
"dependencies": {
"@gltf-transform/core": "^4.4.0",
"@gltf-transform/extensions": "^4.4.0",
"@gltf-transform/functions": "^4.4.0",
"cli-progress": "^3.12.0",
"commander": "^15.0.0",
"earcut": "^3.0.2",
"node-unrar-js": "^2.0.2",
"ora": "^9.4.0",
"pino": "^10.3.1",
"proj4": "^2.20.9",
"sharp": "^0.35.1",
"shpjs": "^6.2.0",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@types/earcut": "^3.0.0",
"@types/geojson": "^7946.0.16",
"@types/node": "^25.9.3",
"@types/proj4": "^2.5.6",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"eslint": "^10.5.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}