-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.13 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
77
78
79
80
81
82
83
84
85
86
{
"name": "@spatialjs/core",
"version": "0.0.51",
"main": "./dist/spatialjs.es.js",
"module": "./dist/spatialjs.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/spatialjs.es.js",
"types": "./dist/index.d.ts"
}
},
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"demo": "vite serve demo",
"tutorial1": "vite serve examples/tutorial-1",
"music": "vite serve examples/music-player",
"room": "vite serve examples/room --host",
"format": "prettier --write ."
},
"keywords": [
"spatial",
"r3f",
"ui",
"react",
"three.js",
"webgl"
],
"author": "Matthew Davis",
"license": "UNLICENSED",
"description": "",
"dependencies": {
"@react-spring/three": "^9.7.4",
"@react-three/fiber": "^8.16.0",
"@react-three/uikit": "^0.4.0",
"three": "^0.167.0",
"uuid": "^10.0.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@react-three/drei": "^9.109.2",
"@react-three/uikit-lucide": "^0.4.0",
"@react-three/xr": "^6.1.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/three": "^0.167.1",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitejs/plugin-react": "^4.2.1",
"prettier": "^3.3.3",
"rollup": "^4.19.1",
"rollup-plugin-dts": "^6.1.1",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-dts": "^4.0.0-beta.1",
"vite-plugin-mkcert": "^1.17.5"
},
"files": [
"dist"
],
"homepage": "https://spatialjs.dev/",
"repository": {
"type": "git",
"url": "https://github.com/Deamoner/spatialjs.git"
},
"bugs": {
"url": "https://github.com/Deamoner/spatialjs/issues"
},
"peerDependencies": {
"@react-three/fiber": "^8.16.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"three": "^0.167.0",
"zustand": "^4.5.0"
},
"website": "https://www.spatialjs.dev/"
}