-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.22 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.22 KB
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
{
"name": "phy-engine",
"version": "0.5.6",
"description": "JavaScript 3D Rolly Game for three.js",
"type": "module",
"main": "./build/Phy.cjs",
"module": "./build/Phy.module.js",
"exports": {
".": {
"import": "./build/Phy.module.js",
"require": "./build/Phy.cjs"
},
"./build/*": "./build/*",
"./compact/*": "./compact/*"
},
"files": [
"package.json",
"LICENSE",
"README.md",
"compact",
"build"
],
"directories": {
"demos": "demos"
},
"scripts": {
"start": "http-server -p 8081",
"build": "npm run phy",
"main": "rollup -c rollup/rollup.config.main.js",
"smoke": "rollup -c rollup/extra.smoke.js",
"fracture": "rollup -c rollup/extra.fracture.js",
"codeflask": "rollup -c rollup/extra.codeflask.js",
"phy": "rollup -c rollup/rollup.config.phy.js"
},
"keywords": [
"physx",
"three",
"physics",
"engine"
],
"author": "Yulice",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.0",
"rollup": "^4.6.0",
"three": "^0.175.0"
},
"dependencies": {
"http-server": "^14.1.1",
"https-server": "^0.1.2",
"phy-engine": "^0.5.6"
}
}