-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (42 loc) · 850 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (42 loc) · 850 Bytes
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
{
"name": "beach-ball-bounce",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"electron": "electron .",
"dist": "npm run build && electron-builder"
},
"build": {
"appId": "com.casa4studio.beachballbounce",
"productName": "BeachBallBounce",
"files": [
"dist/**/*",
"electron/**/*"
],
"directories": {
"buildResources": "build"
},
"win": {
"target": [
{
"target": "portable",
"arch": ["x64"]
}
]
}
},
"devDependencies": {
"electron": "^42.4.0",
"electron-builder": "^26.15.2",
"typescript": "~6.0.2",
"vite": "^8.0.12"
},
"dependencies": {
"phaser": "^4.1.0"
}
}