-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (61 loc) · 1.46 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
{
"name": "giffer",
"version": "1.0.0",
"description": "GIF managing and tagging",
"main": "src/main.js",
"author": "me",
"license": "MIT",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps",
"clean": "rimraf dist",
"rebuild": "npm run clean && npm run build"
},
"build": {
"appId": "com.giffer.app",
"productName": "GIFfer",
"directories": {
"output": "dist",
"buildResources": "build"
},
"files": [
"src/**/*",
"index.html",
"package.json",
"build/icon.ico"
],
"win": {
"target": "nsis",
"artifactName": "${productName}-Setup-${version}.${ext}"
},
"nsis": {
"oneClick": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "GIFfer",
"runAfterFinish": true,
"installerIcon": "icon.ico",
"uninstallerIcon": "icon.ico"
}
},
"dependencies": {
"chokidar": "^3.5.3",
"clipboardy": "^4.0.0",
"fs-extra": "^11.2.0",
"node-fetch": "^2.7.0",
"sharp": "^0.33.5",
"winreg": "^1.2.5",
"electron-is-dev": "^2.0.0"
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"rimraf": "^5.0.5"
},
"engines": {
"node": ">=20.17.0"
}
}