-
Notifications
You must be signed in to change notification settings - Fork 289
/
package.json
76 lines (76 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "3d-tiles-renderer",
"version": "0.3.41",
"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/*"
],
"exports": {
".": "./src/index.js",
"./r3f": "./src/r3f/index.jsx",
"./plugins": "./src/plugins/index.js"
},
"scripts": {
"start": "vite --config ./vite.config.js",
"build-examples": "vite build --config ./vite.config.js",
"lint": "eslint \"src/**/*.{js,jsx,ts}\" \"test/**/*.js\" \"example/*.{js,jsx}\" && 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",
"@react-three/drei": "^9.114.3",
"@types/eslint": "^7.28.1",
"@types/three": "^0.166.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vitejs/plugin-react": "^4.3.2",
"babel-jest": "^29.5.0",
"cesium": "^1.97.0",
"concurrently": "^6.2.1",
"eslint-config-mdcs": "^5.0.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^27.1.1",
"jest-cli": "^27.1.1",
"leva": "^0.9.35",
"three": "^0.170.0",
"typescript": "^5.1.3",
"vite": "^5.3.1"
},
"peerDependencies": {
"three": ">=0.123.0"
},
"optionalDependencies": {
"@react-three/fiber": "^8.17.9",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}