Files
Mujoco_WASM/wasm/package.json
T
Matija Kecman 2018b8c494 Disable WASM bindings benchmarks on Github CI
Updated the wasm/README.md to describe how to manually run the benchmark tests.

PiperOrigin-RevId: 827881670
Change-Id: I1d524851d9f3f8182ecbfcc649bb9a5a61d716ae
2025-11-04 03:00:29 -08:00

31 lines
957 B
JSON

{
"name": "mujoco_wasm",
"version": "1.0.0-alpha.1",
"description": "MuJoCo JavaScript Bindings",
"directories": {
"example": "examples",
"lib": "lib",
"test": "tests"
},
"scripts": {
"test": "node --loader ts-node/esm --trace-warnings tests/run_tests.mjs",
"benchmark": "node --loader ts-node/esm --trace-warnings tests/run_benchmarks.mjs",
"dev:sandbox": "vite --config tests/sandbox/vite.sandbox.config.ts",
"build:sandbox": "vite build --config tests/sandbox/vite.sandbox.config.ts",
"dev:demo": "vite --config demo_app/vite.demo.config.ts",
"build:demo": "vite build --config demo_app/vite.demo.config.ts"
},
"author": "Google DeepMind",
"license": "Apache-2.0",
"devDependencies": {
"@types/jasmine": "^5.1.8",
"@types/node": "^24.1.0",
"jasmine": "^5.9.0",
"three": "^0.178.0",
"ts-node": "^10.9.2",
"typescript": "5.8.2",
"vite": "^7.0.6"
},
"type": "module"
}