-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "@depasquale/three-immersive-controls",
"type": "module",
"version": "0.0.17",
"description": "Immersive (VR) controls for Three.js",
"author": "Anthony DePasquale ([email protected])",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DePasqualeOrg/three-immersive-controls"
},
"main": "build/three-immersive-controls.js",
"types": "build/types/index.d.ts",
"files": [
"README.md",
"LICENSE.md",
"package.json",
"src",
"build",
"examples"
],
"browser": {},
"scripts": {
"build": "node scripts/build.js",
"examples": "node scripts/webserver.js"
},
"dependencies": {
"@depasquale/three-immersive-controls": "^0.0.15",
"@depasquale/three-stats-mesh": "^0.0.15",
"@depasquale/three-wizard": "^0.0.14",
"@tweenjs/tween.js": "23.0.0",
"three": "0.161.0"
},
"devDependencies": {
"@depasquale/eslint-config-typescript": "^0.0.15",
"@depasquale/front-end-build-tools": "^0.0.3",
"@types/three": "0.161.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.30.0",
"express": "^4.21.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"typescript": "^5.6.2"
}
}