This repository has been archived by the owner on Oct 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.53 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": "pchecker",
"version": "1.0.3",
"description": "A simple crc checker based on Electron",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --x64",
"build32": "electron-builder --ia32",
"test": "electron ."
},
"author": "BackRunner",
"license": "MIT",
"devDependencies": {
"animate.css": "^3.7.2",
"bootstrap": "^4.4.1",
"electron": "^8.0.3",
"electron-builder": "^22.3.2",
"font-awesome": "^4.7.0",
"jquery": "^3.4.1",
"js-yaml": "^3.13.1",
"jsrender": "^1.0.5",
"mousetrap": "^1.6.5",
"popper.js": "^1.16.1",
"toastr": "^2.1.4"
},
"dependencies": {
"electron-json-storage": "^4.1.8",
"electron-titlebar": "0.0.3",
"electron-updater": "^4.2.2",
"moment": "^2.24.0"
},
"build": {
"files": [
"!.vscode/**/*",
"!**/Readme*",
"!**/LICENSE",
"!**/dist/**/*",
"!**/gulpfile*.js",
"!old_version/**/*",
"!icon.ico",
"!src/assets/**/*",
"!site/**/*"
],
"appId": "app.pwp.pchecker",
"compression": "maximum",
"productName": "pChecker",
"publish": [
{
"provider": "generic",
"url": "http://update.backrunner.top/pchecker"
}
],
"win": {
"target": {
"target": "nsis"
},
"icon": "icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"allowElevation": true,
"differentialPackage": false,
"createDesktopShortcut": true
}
}
}