-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
88 lines (88 loc) · 2.02 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
88
{
"name": "r3f-perf",
"version": "7.2.3",
"description": "Easily monitor your ThreeJS performances.",
"keywords": [
"react",
"three",
"benchmark",
"performance",
"monitor",
"analysis",
"profiling",
"r3f"
],
"author": "Renaud ROHLINGER (https://github.com/RenaudRohlinger)",
"homepage": "https://github.com/utsuboco/r3f-perf",
"repository": "https://github.com/utsuboco/r3f-perf",
"license": "MIT",
"files": [
"dist/*",
"src/*"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./headless": {
"types": "./dist/headless.d.ts",
"require": "./dist/headless.js",
"import": "./dist/headless.mjs"
}
},
"sideEffects": false,
"scripts": {
"dev": "vite",
"dev:server": "node demo/server.mjs",
"build": "vite build && tsc",
"serve": "vite serve"
},
"devDependencies": {
"@react-three/fiber": "^8.16.1",
"@types/node": "^18.19.28",
"@types/react": "^17.0.80",
"@types/react-dom": "^17.0.25",
"@types/three": "^0.148.1",
"@vitejs/plugin-react": "^3.1.0",
"express": "^4.19.2",
"fs": "0.0.1-security",
"leva": "^0.9.35",
"path": "^0.12.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-visualizer": "^5.12.0",
"three": "^0.149.0",
"typescript": "^4.9.5",
"url": "^0.11.3",
"vite": "^5.4.8"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.0",
"@react-three/drei": "^9.103.0",
"@stitches/react": "^1.2.8",
"@utsubo/events": "^0.1.7",
"zustand": "~4.5.2"
},
"peerDependencies": {
"@react-three/fiber": ">=8.0",
"react": ">=18.0",
"react-dom": ">=18.0",
"three": ">=0.133"
},
"peerDependenciesMeta": {
"@react-three/fiber": {
"optional": true
},
"dom": {
"optional": true
},
"react-dom": {
"optional": true
}
}
}