-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.05 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
{
"name": "template-rapier",
"description": "A Phaser 3 template using Rapier physics.",
"version": "1.0.1",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-rapier.git"
},
"author": "Phaser Studio <[email protected]> (https://phaser.io/)",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/phaserjs/template-rapier/issues"
},
"homepage": "https://github.com/phaserjs/template-rapier#readme",
"scripts": {
"dev": "node log.js dev & vite --config vite/config.dev.mjs",
"build": "node log.js build & vite build --config vite/config.prod.mjs",
"dev-nolog": "vite --config vite/config.dev.mjs",
"build-nolog": "vite build --config vite/config.prod.mjs"
},
"devDependencies": {
"terser": "^5.31.0",
"vite": "^5.3.1"
},
"dependencies": {
"@dimforge/rapier2d-compat": "^0.14.0",
"phaser": "^3.87.0"
}
}