-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "gmod-addon-tool",
"version": "2.4.0",
"description": "A simple tool to create, update and extract Garry's Mod workshop addons.",
"main": "app.js",
"homepage": "https://leeous.com",
"dependencies": {
"cross-spawn": "^7.0.1",
"dialog": "^0.3.1",
"electron-settings": "^3.2.0",
"g": "^2.0.1",
"image-size": "^0.8.3",
"yarn": "^1.22.4"
},
"devDependencies": {
"electron": "^9.4.0",
"electron-builder": "^22.8.1",
"electron-connect": "^0.6.3",
"electron-packager": "^14.2.1"
},
"build": {
"appId": "com.gmodaddontool.app",
"icon": "src/img/icon.png",
"productName": "Garry's Mod Addon Tool",
"linux": {
"target": "Snap",
"icon": "src/img/icon.png",
"synopsis": "A simple tool to create, update and extract Garry's Mod workshop addons.",
"description": "A simple tool to create, update and extract Garry's Mod workshop addons.",
"category": "Utility"
},
"win": {
"icon": "src/img/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
},
{
"target": "portable",
"arch": [
"x64",
"ia32"
]
}
]
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"build": "electron-builder -w"
},
"author": "Leeous <contact@leeous.com>",
"license": "ISC",
"repository": "git@github.com:Leeous/gmod-addon-tool.git"
}