This repository has been archived by the owner on Nov 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.25 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "bili-dd-monitor",
"version": "0.0.14",
"author": "kinori",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "npm run build:app && npm run build:electron",
"build:app": "ng build --prod --base-href ./",
"build:electron": "tsc -p ./electron/",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"electron-start": "npm run build && electron -p ./dist/electron/src/main.js",
"electron-start:dev": "npm run build:electron && electron -p ./dist/electron/src/main.js --inspect=5858",
"dist": "electron-builder",
"release": "npm run build && npm run dist"
},
"main": "./dist/electron/src/main.js",
"private": true,
"dependencies": {
"@types/got": "^9.6.7",
"electron-settings": "^3.2.0",
"electron-updater": "^4.1.2",
"request": "^2.88.0",
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.803.9",
"@angular/animations": "^8.2.10",
"@angular/cli": "^8.3.9",
"@angular/common": "^8.2.10",
"@angular/compiler": "^8.2.10",
"@angular/compiler-cli": "^8.2.10",
"@angular/core": "^8.2.10",
"@angular/forms": "^8.2.10",
"@angular/language-service": "^8.2.10",
"@angular/platform-browser": "^8.2.10",
"@angular/platform-browser-dynamic": "^8.2.10",
"@angular/router": "^8.2.10",
"@types/electron-settings": "^3.1.1",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"@types/request": "^2.48.3",
"@types/socket.io-client": "^1.4.32",
"codelyzer": "^5.0.0",
"electron": "^6.0.12",
"electron-builder": "^21.2.0",
"electron-log": "^3.0.8",
"electron-notarize": "^0.2.0",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"ng-zorro-antd": "^8.3.1",
"ngx-electron": "^2.1.1",
"protractor": "~5.4.0",
"rxjs": "~6.4.0",
"ts-node": "~7.0.0",
"tslib": "^1.10.0",
"tslint": "~5.15.0",
"typescript": "~3.5.3",
"zone.js": "~0.9.1"
},
"build": {
"productName": "DD监控室",
"appId": "com.electron.bili_dd_monitor",
"files": [
"dist",
"public"
],
"directories": {
"output": "build"
},
"releaseInfo": {
"releaseName": "0.0.14",
"releaseNotes": "点击上播提醒可跳转到直播间"
},
"win": {
"icon": "./public/icon256.ico"
},
"afterSign": "scripts/notarize.js",
"mac": {
"icon": "./public/icon.icns",
"category": "public.app-category.utilities",
"entitlements": "./public/entitlements.mac.plist",
"entitlementsInherit": "./public/entitlements.mac.plist",
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "../public/icon256.ico",
"uninstallerIcon": "./public/icon256.ico",
"installerHeaderIcon": "./public/icon256.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "DD监控室"
}
}
}