-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "@depasquale/three-wizard",
"version": "0.0.14",
"description": "Create a Three.js scene without the boilerplate",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/DePasqualeOrg/three-wizard"
},
"author": "Anthony DePasquale ([email protected])",
"license": "MIT",
"main": "build/three-wizard.js",
"files": [
"README.md",
"LICENSE.md",
"package.json",
"src",
"build",
"example"
],
"scripts": {
"build": "tsc",
"example": "node scripts/webserver.js"
},
"devDependencies": {
"@depasquale/eslint-config-typescript": "^0.0.12",
"@types/three": "^0.158.1",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"eslint-plugin-import": "^2.29.0",
"express": "^4.18.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@depasquale/three-immersive-controls": "^0.0.14",
"@depasquale/three-wizard": "^0.0.13",
"three": "^0.158.0"
}
}