-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
62 lines (62 loc) · 1.39 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
{
"name": "ecctrl",
"version": "1.0.90",
"author": "Erdong Chen",
"license": "MIT",
"description": "A floating rigibody character controller for R3F",
"keywords": [
"react",
"three",
"threejs",
"react-three-fiber",
"control",
"character-control"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pmndrs/ecctrl.git"
},
"files": [
"dist/*",
"src/*"
],
"type": "module",
"types": "./dist/Ecctrl.d.ts",
"main": "./dist/Ecctrl.cjs",
"module": "./dist/Ecctrl.js",
"exports": {
"types": "./dist/Ecctrl.d.ts",
"require": "./dist/Ecctrl.cjs",
"import": "./dist/Ecctrl.js"
},
"sideEffects": false,
"devDependencies": {
"@react-three/drei": "^9.112.0",
"@react-three/fiber": "^8.17.7",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.8",
"@vitejs/plugin-react": "^4.1.0",
"r3f-perf": "^7.1.2",
"typescript": "^5.4.3",
"vite": "^4.5.3"
},
"dependencies": {
"@react-spring/three": "^9.7.3",
"@types/three": "^0.168.0",
"leva": "^0.9.34",
"zustand": "^4.4.7"
},
"peerDependencies": {
"@react-three/drei": ">=9.0",
"@react-three/fiber": ">=8.0",
"@react-three/rapier": ">=1.5.0",
"react": ">=18",
"react-dom": ">=18.0",
"three": ">=0.168.0"
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc",
"preview": "vite preview"
}
}