-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.07 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
31
32
33
34
35
36
37
38
39
40
{
"name": "ai-bot-workspace",
"productName": "AI Bot Workspace",
"version": "2.4.3",
"description": "An Electron application which includes testing workspaces for most Riddles.io competitions.",
"main": "src/app.js",
"repository": "https://github.com/jmerle/ai-bot-workspace",
"author": "Jasper van Merle <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"release": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "com.jaspervanmerle.aibotworkspace",
"asarUnpack": "**/*.jar",
"mac": {
"category": "public.app-category.developer-tools"
},
"linux": {
"target": "AppImage",
"category": "Development"
}
},
"dependencies": {
"electron-store": "^1.3.0",
"electron-updater": "^2.20.1",
"execa": "^0.9.0",
"marked": "^0.3.17",
"semver": "^5.5.0"
},
"devDependencies": {
"electron": "1.8.4",
"electron-builder": "^20.2.0"
}
}