forked from NASA-AMMOS/3DTilesRendererJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.61 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
{
"name": "3d-tiles-renderer",
"version": "0.3.38",
"description": "https://github.com/AnalyticalGraphicsInc/3d-tiles/tree/master/specification",
"keywords": [
"3d-tiles",
"3dtiles",
"graphics",
"b3dm",
"gltf",
"threejs",
"rendering",
"geometry",
"terrain",
"cesium"
],
"type": "module",
"sideEffects": false,
"main": "src/index.js",
"module": "src/index.js",
"files": [
"src/*"
],
"scripts": {
"start": "vite --config ./vite.config.js",
"build-examples": "vite build --config ./vite.config.js",
"lint": "eslint \"src/**/*.js\" \"test/**/*.js\" \"example/*.js\" && tsc -p tsconfig.json --noEmit",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NASA-AMMOS/3DTilesRendererJS.git"
},
"bugs": {
"url": "https://github.com/NASA-AMMOS/3DTilesRendererJS/issues"
},
"homepage": "https://github.com/NASA-AMMOS/3DTilesRendererJS#readme",
"author": "Garrett Johnson <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@types/three": "^0.166.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"babel-jest": "^29.5.0",
"cesium": "^1.97.0",
"concurrently": "^6.2.1",
"@types/eslint": "^7.28.1",
"eslint-config-mdcs": "^5.0.0",
"eslint-plugin-jest": "^28.6.0",
"jest": "^27.1.1",
"jest-cli": "^27.1.1",
"three": "^0.166.0",
"typescript": "^5.1.3",
"vite": "^5.3.1"
},
"peerDependencies": {
"three": ">=0.123.0"
}
}