-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "@c-frame/physx",
"version": "0.1.2",
"description": "Physics for A-Frame using Nvidia PhysX",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"start": "npm run dev",
"dev": "npx webpack serve",
"dist": "npm run dist:dev && npm run dist:prod",
"dist:dev": "webpack --config webpack.config.js",
"dist:prod": "webpack --config webpack.prod.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c-frame/physx.git"
},
"keywords": [
"physics",
"A-Frame",
"aframe",
"threejs",
"webXR",
"physx"
],
"author": "Diarmid Mackenzie",
"license": "MIT",
"bugs": {
"url": "https://github.com/c-frame/physx/issues"
},
"homepage": "https://github.com/c-frame/physx#readme",
"dependencies": {
"aframe-stats-panel": "^0.2.1"
},
"devDependencies": {
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
}
}