-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
82 lines (82 loc) · 2.36 KB
/
package.json
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "jolt-physics",
"version": "0.32.0",
"description": "A WebAssembly port of JoltPhysics, a rigid body physics and collision detection library, suitable for games and VR applications",
"type": "module",
"main": "dist/jolt-physics.wasm-compat.js",
"types": "dist/jolt-physics.wasm-compat.d.ts",
"exports": {
".": {
"types": "./dist/jolt-physics.wasm-compat.d.ts",
"default": "./dist/jolt-physics.wasm-compat.js"
},
"./wasm": {
"types": "./dist/jolt-physics.wasm.d.ts",
"default": "./dist/jolt-physics.wasm.js"
},
"./wasm-compat": {
"types": "./dist/jolt-physics.wasm-compat.d.ts",
"default": "./dist/jolt-physics.wasm-compat.js"
},
"./asm": {
"types": "./dist/jolt-physics.d.ts",
"default": "./dist/jolt-physics.js"
},
"./wasm-multithread": {
"types": "./dist/jolt-physics.multithread.wasm.d.ts",
"default": "./dist/jolt-physics.multithread.wasm.js"
},
"./wasm-compat-multithread": {
"types": "./dist/jolt-physics.multithread.wasm-compat.d.ts",
"default": "./dist/jolt-physics.multithread.wasm-compat.js"
},
"./jolt-physics.wasm.wasm": "./dist/jolt-physics.wasm.wasm",
"./jolt-physics.multithread.wasm.wasm": "./dist/jolt-physics.multithread.wasm.wasm",
"./package.json": "./package.json"
},
"scripts": {
"build": "sh build.sh",
"examples": "node serveexamples/serveexamples.cjs"
},
"homepage": "https://github.com/jrouwe/JoltPhysics.js",
"repository": "https://github.com/jrouwe/JoltPhysics.js.git",
"author": "jrouwe",
"license": "MIT",
"files": [
"README.md",
"LICENSE",
"./dist/jolt-physics.js",
"./dist/jolt-physics.d.ts",
"./dist/jolt-physics.wasm-compat.js",
"./dist/jolt-physics.wasm-compat.d.ts",
"./dist/jolt-physics.wasm.js",
"./dist/jolt-physics.wasm.d.ts",
"./dist/jolt-physics.wasm.wasm",
"./dist/jolt-physics.multithread.wasm-compat.js",
"./dist/jolt-physics.multithread.wasm-compat.d.ts",
"./dist/jolt-physics.multithread.wasm.js",
"./dist/jolt-physics.multithread.wasm.d.ts",
"./dist/jolt-physics.multithread.wasm.wasm",
"./dist/types.d.ts",
"asm",
"wasm",
"wasm-compat",
"wasm-multithread",
"wasm-compat-multithread"
],
"keywords": [
"physics",
"physics-engine",
"physics-simulation",
"simulation",
"game-engine",
"vr",
"game-development",
"webassembly",
"wasm"
],
"devDependencies": {
"express": "^4.19.2",
"webidl-dts-gen": "^1.11.0"
}
}