-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 2.71 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "stuff-diver",
"version": "0.4.4",
"description": "Dive deep into your disk — treemap, pie chart & duplicate finder",
"author": {
"name": "Stuff Diver",
"email": "info@stuffdiver.com"
},
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:mac": "electron-builder --mac --arm64 --x64",
"build:win": "electron-builder --win --arm64 --x64",
"build:linux": "electron-builder --linux --arm64 --x64"
},
"build": {
"appId": "com.stuffdiver.app",
"productName": "Stuff Diver",
"directories": {
"output": "dist"
},
"icon": "build/icon.png",
"publish": {
"provider": "github",
"owner": "cryptopoly",
"repo": "StuffDiver",
"releaseType": "release"
},
"afterSign": "scripts/notarize.js",
"mac": {
"icon": "build/icon.icns",
"artifactName": "Stuff-Diver-${version}-${arch}.${ext}",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
},
{
"target": "zip",
"arch": [
"arm64",
"x64"
]
}
],
"category": "public.app-category.utilities",
"entitlements": "entitlements.mac.plist",
"entitlementsInherit": "entitlements.mac.plist",
"extendInfo": {
"NSDesktopFolderUsageDescription": "Stuff Diver needs access to scan folder sizes and find duplicates.",
"NSDocumentsFolderUsageDescription": "Stuff Diver needs access to scan folder sizes and find duplicates.",
"NSDownloadsFolderUsageDescription": "Stuff Diver needs access to scan folder sizes and find duplicates."
}
},
"win": {
"icon": "build/icon.png",
"artifactName": "Stuff-Diver-Setup-${version}.${ext}",
"target": [
{
"target": "nsis",
"arch": [
"arm64",
"x64"
]
}
]
},
"linux": {
"artifactName": "Stuff-Diver-${version}-${arch}.${ext}",
"target": [
{
"target": "AppImage",
"arch": [
"arm64",
"x64"
]
},
{
"target": "deb",
"arch": [
"arm64",
"x64"
]
}
],
"category": "Utility"
},
"files": [
"main.js",
"preload.js",
"index.html",
"styles.css",
"renderer.js",
"logo.png"
]
},
"devDependencies": {
"@electron/notarize": "^3.1.1",
"electron": "^41.2.1",
"electron-builder": "^26.0.12"
},
"dependencies": {
"electron-updater": "^6.8.3"
}
}