-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 826 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 826 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
33
34
35
36
37
{
"name": "@kite3d/plugin-mujoco",
"version": "0.2.0",
"description": "MuJoCo WASM physics sessions and geometry views for Kite3D",
"type": "module",
"main": "./MujocoPhysics.plugin.js",
"exports": "./MujocoPhysics.plugin.js",
"files": [
"MujocoPhysics.plugin.js",
"session.worker.js",
"model.js",
"view.js",
"runtime/mujoco.js",
"runtime/mujoco.wasm",
"runtime/LICENSE"
],
"scripts": {
"test": "node --test",
"test:unit": "node --test test/entry.test.js",
"test:pack": "node --test test/package.test.js"
},
"keywords": [
"kite3d-plugin",
"mujoco",
"physics"
],
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"peerDependencies": {
"@kite3d/engine": ">=0.15.0"
},
"devDependencies": {
"@kite3d/engine": "0.15.0"
}
}