2018b8c494
Updated the wasm/README.md to describe how to manually run the benchmark tests. PiperOrigin-RevId: 827881670 Change-Id: I1d524851d9f3f8182ecbfcc649bb9a5a61d716ae
31 lines
957 B
JSON
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"
|
|
}
|