-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.31 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.31 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "ark-ide",
"version": "1.0.0",
"main": "main.js",
"description": "Ark IDE Desktop Application",
"author": "arc",
"scripts": {
"start": "electron .",
"update": "bash update-source.sh",
"build": "electron-builder",
"build:linux": "electron-builder --linux",
"build:win": "electron-builder --windows",
"build:mac": "electron-builder --mac"
},
"build": {
"appId": "com.arc.arkide",
"productName": "ArkIDE",
"files": [
"main.js",
"preload.js",
"source/**/*",
"package.json",
"assets/**/*",
"settings.html",
"close.svg",
"version.txt"
],
"publish": {
"provider": "github",
"owner": "arc360alt",
"repo": "ArkIDE-Desktop"
},
"icon": "assets/icons/icon.png",
"linux": {
"icon": "assets/icons/icon.png",
"target": [
"AppImage"
],
"category": "Development"
},
"win": {
"icon": "assets/icons/icon.ico",
"target": [
"nsis"
]
},
"mac": {
"icon": "assets/icons/icon.icns",
"target": [
"dmg"
],
"category": "public.app-category.developer-tools"
}
},
"devDependencies": {
"electron": "^41.0.0",
"electron-builder": "^25.0.0"
},
"dependencies": {
"discord-rpc": "^4.0.1"
}
}