-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathpackage.json
87 lines (87 loc) · 2.03 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
87
{
"name": "@react-three/fiber",
"version": "9.0.0-rc.7",
"description": "A React renderer for Threejs",
"keywords": [
"react",
"renderer",
"fiber",
"three",
"threejs"
],
"author": "Paul Henschel (https://github.com/drcmda)",
"license": "MIT",
"maintainers": [
"Josh Ellis (https://github.com/joshuaellis)",
"Cody Bennett (https://github.com/codyjasonbennett)"
],
"bugs": {
"url": "https://github.com/pmndrs/react-three-fiber/issues"
},
"homepage": "https://github.com/pmndrs/react-three-fiber#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pmndrs/react-three-fiber.git"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-three-fiber"
},
"main": "dist/react-three-fiber.cjs.js",
"module": "dist/react-three-fiber.esm.js",
"types": "dist/react-three-fiber.cjs.d.ts",
"react-native": "native/dist/react-three-fiber-native.cjs.js",
"sideEffects": false,
"preconstruct": {
"entrypoints": [
"index.tsx",
"native.tsx"
]
},
"scripts": {
"prebuild": "cp ../../readme.md readme.md"
},
"dependencies": {
"@babel/runtime": "^7.17.8",
"@types/react-reconciler": "^0.28.8",
"@types/webxr": "*",
"base64-js": "^1.5.1",
"buffer": "^6.0.3",
"its-fine": "^1.2.5",
"react-reconciler": "0.31.0",
"react-use-measure": "^2.1.7",
"scheduler": "0.25.0",
"suspend-react": "^0.1.3",
"zustand": "^4.1.2"
},
"peerDependencies": {
"expo": ">=43.0",
"expo-asset": ">=8.4",
"expo-gl": ">=11.0",
"expo-file-system": ">=11.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": ">=0.78",
"three": ">=0.156"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
},
"expo": {
"optional": true
},
"expo-asset": {
"optional": true
},
"expo-file-system": {
"optional": true
},
"expo-gl": {
"optional": true
}
}
}