-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.99 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.99 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
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
{
"name": "@vladkrutenyuk/cannon-es-debugger-pro",
"version": "0.2.4",
"source": "src/index.ts",
"scripts": {
"build": "rimraf dist & parcel build",
"demo": "parcel ./src/demo/index.html --dist-dir demo-build",
"demo-build": "rimraf demo-build & parcel build src/demo/index.html --dist-dir demo-build --public-url /demo-build/"
},
"author": "Vlad Krutenyuk <vladislove2402@gmail.com> (https://kvy.world)",
"license": "MIT",
"description": "This is improved pro debugger for 'cannon-es' with 'three' to visualize all bodies and its shapes of physics world.",
"homepage": "https://github.com/vladkrutenyuk/cannon-es-debugger-pro",
"repository": {
"type": "git",
"url": "https://github.com/vladkrutenyuk/cannon-es-debugger-pro"
},
"main": "dist/index.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"targets": {
"main": {
"optimize": true
},
"module": {
"optimize": true
}
},
"files": [
"dist"
],
"browserslist": "> 0.5%, last 2 versions, not dead",
"devDependencies": {
"@parcel/config-default": "latest",
"@parcel/optimizer-terser": "latest",
"@parcel/packager-ts": "latest",
"@parcel/transformer-typescript-tsc": "latest",
"@parcel/transformer-typescript-types": "latest",
"@types/three": "^0.160.0",
"cannon-es": "^0.20.0",
"parcel": "latest",
"rimraf": "^5.0.5",
"three": "^0.160.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"cannon-es": ">=0.20.0",
"three": ">=0.160.0",
"typescript": ">=5.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"keywords": [
"three",
"threejs",
"three.js",
"javascript",
"3d",
"graphics",
"cg",
"webgl",
"webgl2",
"webcpu",
"debug",
"debugger",
"cannon-es",
"cannon-es-debugger",
"cannon",
"cannones",
"cannon.js",
"three physics",
"physics",
"kvy",
"vlad krutenyuk",
"vladkrutenyuk",
"wireframe"
]
}