-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.42 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.42 KB
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
{
"name": "mujoco-react",
"version": "8.2.1",
"description": "Composable React Three Fiber building blocks for MuJoCo WASM simulations",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"sideEffects": false,
"keywords": [
"mujoco",
"react",
"three",
"r3f",
"react-three-fiber",
"physics",
"simulation",
"robotics",
"wasm"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/noah-wardlow/mujoco-react"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@react-three/drei": ">=9",
"@react-three/fiber": ">=8",
"react": ">=18",
"three": ">=0.160.0"
},
"dependencies": {
"mujoco-js": "0.0.7"
},
"devDependencies": {
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/react": "^19.0.0",
"@types/three": "^0.181.0",
"react": "^19.2.0",
"semantic-release": "^25.0.3",
"three": "^0.181.0",
"tsup": "^8.4.0",
"typescript": "~5.8.2"
}
}