-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 961 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 961 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
{
"name": "batocode-arcade",
"description": "A Chromium-based Electron app that runs MakeCode Arcade games in Kiosk mode on Batocera.",
"author": "RAM Raiders",
"version": "2.0.15",
"main": "src/index.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/RAMRaiders/batocode-arcade.git"
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"electron": "^28.1.0",
"electron-builder": "^26.0.12"
},
"build": {
"appId": "com.ramraiders.batocode-arcade",
"productName": "BatoCode Arcade",
"asar": true,
"files": [
"src/**/*",
"package.json",
"!node_modules/**/*"
],
"mac": {
"target": "dmg",
"icon": "assets/icon.png"
},
"linux": {
"target": [
"tar.gz"
],
"category": "Game",
"icon": "assets/icon.png"
}
}
}