forked from phaserjs/phaser-by-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 835 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
30
31
32
33
34
35
36
37
38
39
{
"name": "marstranded",
"productName": "Marstranded",
"main": "index.html",
"type": "module",
"window": {
"title": "Marstranded - by Pello",
"width": 800,
"height": 600,
"fullscreen": false,
"toolbar": false,
"icon": "customIcon.png"
},
"version": "0.0.1",
"description": "Game for Phaser by Example",
"repository": {
"url": "https://github.com/phaserjs/phaser-by-example"
},
"license": "MIT",
"keywords": [
"phaser",
"games",
"book",
"pello"
],
"scripts": {
"dev": "vite --config vite/config.dev.mjs",
"build": "vite build --config vite/config.prod.mjs"
},
"devDependencies": {
"terser": "^5.28.1",
"vite": "^5.1.4"
},
"dependencies": {
"easystarjs": "^0.4.4",
"phaser": "^3.80.1",
"phaser3-rex-plugins": "^1.1.74"
}
}