-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.39 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
62
63
64
65
66
67
68
{
"name": "7zip-gui",
"productName": "7ZipGUI",
"version": "1.0.0",
"description": "GUI wrapper for 7-Zip",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"repository": {
"type": "git",
"url": "https://github.com/izdiwho/7ZipGUI.git"
},
"author": {
"name": "izdiwho w/ Claude Sonnet-3.5",
"url": "https://izdiwho.com"
},
"license": "MIT",
"build": {
"appId": "com.7zipgui.app",
"productName": "7ZipGUI",
"mac": {
"category": "public.app-category.utilities",
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
},
{
"target": "zip",
"arch": ["x64", "arm64"]
}
],
"icon": "build/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"dmg": {
"title": "7ZipGUI",
"icon": "build/icon.icns",
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
],
"sign": false,
"writeUpdateInfo": false
},
"afterSign": null,
"publish": {
"provider": "github",
"owner": "izdiwho",
"repo": "7ZipGUI"
}
},
"devDependencies": {
"electron": "^33.2.1",
"electron-builder": "^25.1.8"
}
}