This repository was archived by the owner on Jun 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.64 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.64 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
{
"name": "file_things",
"version": "0.0.9",
"description": "File Things,",
"main": "main.js",
"author": "NodeWee",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"mac": "electron-builder --mac",
"win": "electron-builder --win",
"linux": "electron-builder --linux",
"dist": "electron-builder --mwl"
},
"dependencies": {
"art-template": "^4.13.2",
"big-integer": "^1.6.43",
"electron-is-dev": "^1.1.0",
"electron-updater": "^4.0.6",
"file-type": "^9.0.0",
"is_js": "^0.9.0",
"jquery": "^3.3.1",
"piexifjs": "^1.0.4",
"read-chunk": "^3.0.0",
"to-ico": "^1.1.5",
"webp-converter": "^2.2.3"
},
"devDependencies": {
"electron": "^9.1.0",
"electron-builder": "^20.39.0"
},
"build": {
"appId": "live.redesign.file_things",
"copyright": "Copyright 2019 ${author}",
"productName": "FileThings",
"publish": [
{
"provider": "generic",
"url": ""
}
],
"mac": {
"icon": "icons/mac.icns",
"artifactName": "${productName}_mac_${version}.${ext}"
},
"win": {
"icon": "icons/win/256.ico",
"artifactName": "${productName}_win_${version}.${ext}"
},
"linux": {
"icon": "icons/source.png",
"artifactName": "${productName}_linux_${version}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"runAfterFinish": true,
"installerIcon": "./icons/win/256.ico",
"uninstallerIcon": "./icons/win/256.ico"
}
}
}