-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.02 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
{
"name": "template-vite-ts",
"description": "A Phaser 3 TypeScript template using Vite.",
"version": "1.3.2",
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-vite-ts.git"
},
"author": "Phaser Studio <support@phaser.io> (https://phaser.io/)",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/phaserjs/template-vite-ts/issues"
},
"homepage": "https://github.com/phaserjs/template-vite-ts#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",
"typescript": "^5.4.5",
"vite": "^5.3.1"
},
"dependencies": {
"phaser": "^3.87.0"
}
}