-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
68 lines (68 loc) · 1.86 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": "autohotpie",
"productName": "AutoHotPie",
"version": "1.0.29-alpha",
"description": "Universal Pie Menus for Windows",
"main": "main.js",
"scripts": {
"start": "npm run build && electron .",
"build":"npm run refresh-index-scripts",
"build-installer": "npm run build && npm run build-ahk && electron-builder",
"build-ahk": "build\\build-ahk.bat",
"refresh-index-scripts":"node build\\refreshIndexScripts.js"
},
"build": {
"appId": "AutoHotPie",
"directories": {
"buildResources": "resources"
},
"productName": "AutoHotPie",
"extraFiles": [
{
"from": "src",
"to": "resources/src"
}
],
"win": {
"target": [
"nsis"
],
"icon": "src/assets/AutoHotPieIcon.ico",
"requestedExecutionLevel": "asInvoker"
},
"nsis": {
"installerIcon": "src/assets/AutoHotPieIcon.ico",
"uninstallerIcon": "src/assets/AutoHotPieIcon.ico",
"uninstallDisplayName": "AutoHotPie",
"license": "license.txt",
"oneClick": false,
"menuCategory": true,
"allowToChangeInstallationDirectory": false,
"deleteAppDataOnUninstall": false,
"installerSidebar": "src/assets/installer-sidebar.bmp",
"include": "build/uninstaller.nsh"
}
},
"keywords": [],
"author": "dumbeau <[email protected]>",
"license": "MIT",
"dependencies": {
"electron-squirrel-startup": "^1.0.0",
"font-list": "^1.5.1",
"node-dir": "^0.1.17",
"node-window-manager": "^2.2.4",
"uuid": "^9.0.1"
},
"devDependencies": {
"electron": "^28.1.3",
"electron-builder": "^24.9.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dumbeau/AutoHotPie.git"
},
"bugs": {
"url": "https://github.com/dumbeau/AutoHotPie/issues"
},
"homepage": "https://github.com/dumbeau/AutoHotPie#readme"
}