-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 1.86 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
{
"name": "memory-helper",
"version": "1.0.0",
"description": "",
"main": "./src/main.js",
"scripts": {
"start": "nodemon --watch main.js --exec electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"dist": "electron-builder"
},
"build": {
"productName": "Memory Helper",
"appId": "net.egbw.memoryhelper",
"copyright": "EgbW",
"directories": {
"output": "build"
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "./res/icons/todo-256.ico",
"uninstallerIcon": "./res/icons/uninstall.ico",
"installerHeaderIcon": "./res/icons/todo-256.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Memory Helper"
},
"publish": [
{
"provider": "generic",
"url": "http://xxxxx/"
}
],
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"icon": "./res/icons/todo-256.ico"
},
"win": {
"icon": "./res/icons/todo-256.ico",
"target": [
{
"target": "nsis",
"arch": [
"ia32"
]
}
]
},
"linux": {
"icon": "./res/icons/todo-256.ico"
},
"electronDownload": {
"mirror": "https://npm.taobao.org/mirrors/electron/"
}
},
"author": "egbertwong",
"license": "MIT",
"devDependencies": {
"electron": "^9.2.0",
"electron-builder": "^22.8.0",
"nodemon": "^2.0.4"
},
"dependencies": {
"bootstrap": "^4.5.2",
"dexie": "^3.0.2",
"jquery": "^3.5.1",
"popper.js": "^1.12.9",
"sql.js": "^1.3.0"
}
}