-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 952 Bytes
/
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
{
"name": "template-vite-ts",
"description": "A Phaser 3 TypeScript template using Vite.",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-vite-ts.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-vite-ts/issues"
},
"homepage": "https://github.com/phaserjs/template-vite-ts#readme",
"scripts": {
"dev": "vite --config vite/config.dev.js",
"build": "vite build --config vite/config.prod.js",
"deploy": "vite build --config vite/config.prod.js && cp -r /Users/romka/Work/RND/games/002/dist/* /Users/romka/Downloads/game-preview/"
},
"devDependencies": {
"terser": "^5.27.0",
"typescript": "^5.2.2",
"vite": "^5.0.8"
},
"dependencies": {
"phaser": "^3.70.0"
}
}