-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "terriajs-indexer",
"version": "0.0.2",
"description": "A tool for generating static search indexes for TerriaJS datasets.",
"license": "Apache-2.0",
"engines": {
"node": ">=14.15.3"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist build",
"ts-node": "ts-node"
},
"bin": {
"index-3dtiles": "./bin/index-3dtiles",
"index-kml-gltf": "./bin/index-kml-gltf"
},
"files": [
"/bin",
"/dist"
],
"dependencies": {
"3d-tiles-tools": "^0.3.2",
"@gltf-transform/core": "^3.9.0",
"@gltf-transform/extensions": "^3.9.0",
"@types/draco3dgltf": "^1.4.3",
"cesium": "^1.77.0",
"draco3dgltf": "^1.5.6",
"fs-extra": "^9.0.1",
"minisearch": "^3.0.2",
"papaparse": "^5.3.0",
"xml2json": "^0.12.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.5",
"@types/node": "^20.9.1",
"@types/papaparse": "^5.2.4",
"@types/xml2json": "^0.11.3",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"typescript": "^5.2.2"
}
}