forked from stillonearth/MuJoCo-WASM
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 790 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 790 Bytes
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
{
"name": "mujoco_wasm",
"version": "3.12.0",
"description": "Run MuJoCo simulations in browser",
"main": "src/main.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "esbuild ./src/main.js --bundle --sourcemap --format=esm --outdir=./build --platform=node",
"test": "node test_load.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zalo/mujoco_wasm.git"
},
"keywords": [
"mujoco",
"wasm"
],
"author": "Sergei Surovtsev and Johnathon Selstad",
"license": "ISC",
"bugs": {
"url": "https://github.com/zalo/mujoco_wasm/issues"
},
"homepage": "https://github.com/zalo/mujoco_wasm#readme",
"dependencies": {
"@mujoco/mujoco": "^3.12.0",
"esbuild": "^0.25.12",
"three": "^0.181.0"
}
}