-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.11 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
{
"name": "@hello-worlds/react",
"version": "0.0.28",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"clean": "rm -f *.tsbuildinfo && rm -rf dist",
"build": "tsc -b tsconfig.json && tsc -b tsconfig.commonjs.json",
"prebuild": "npm run clean"
},
"files": [
"dist"
],
"devDependencies": {
"@hello-worlds/core": "0.0.9",
"@hello-worlds/planets": "0.0.25",
"@react-three/drei": "9.88.7",
"@react-three/fiber": "8.15.8",
"@types/react": "^18.2.45",
"@types/three": "^0.141.0",
"react": "^18.2.0",
"react-dom": "^18.0.0",
"three": "0.158.0",
"typescript": "5.3.3"
},
"peerDependencies": {
"@hello-worlds/core": "^0.0.9",
"@hello-worlds/planets": "^0.0.25",
"@react-three/drei": "^9.30.1",
"@react-three/fiber": "^8.8.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"three": ">=0.133"
},
"keywords": [
"game",
"procedural generation",
"graphics"
],
"dependencies": {
"@hmans/use-rerender": "^0.0.2",
"three-stdlib": "^2.28.7"
}
}