forked from pmndrs/cannon-es-debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
{
"name": "cannon-es-debugger",
"version": "1.0.0",
"description": "Wireframe debugger for use with cannon-es https://github.com/pmndrs/cannon-es",
"keywords": [
"debugger",
"cannon",
"three",
"react",
"react-three-fiber"
],
"author": "Stefan Hedman <schteppe@gmail.com> (http://steffe.se)",
"contributors": [
"Cody Persinger <codypersinger@gmail.com> (https://github.com/codynova)",
"Marco Fugaro <marco.fugaro@gmail.com> (https://github.com/marcofugaro)"
],
"license": "MIT",
"main": "./dist/cannon-es-debugger.cjs.js",
"module": "./dist/cannon-es-debugger.js",
"types": "./dist/cannon-es-debugger.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"start": "serve",
"prebuild": "rimraf dist",
"build": "npm run typegen && rollup -c",
"typecheck": "tsc --noEmit --emitDeclarationOnly false --strict",
"typegen": "tsc --outFile dist/cannon-es-debugger.d.ts"
},
"peerDependencies": {
"cannon-es": "0.x",
"three": "0.x",
"typescript": ">=3.8"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.1.1",
"@types/three": "^0.135.0",
"cannon-es": "^0.18.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.62.0",
"serve": "^13.0.2",
"three": "^0.136.0",
"typescript": "^4.5.4"
}
}