-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.94 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
{
"name": "kawaikara",
"version": "1.1.3",
"description": "cho kwai OTT-viewer for discord",
"main": "public/electron.js",
"repository": "git@github.com:fabyday/kawaikara.git",
"author": "fabyday",
"license": "MIT",
"keywords": [
"electron",
"OTT-viewer",
"Streaming-Viewer",
"youtube-viewer",
"cho-kawai-viewer",
"music-streaming",
"Video-viewer"
],
"devDependencies": {
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "https://github.com/castlabs/electron-releases#v28.0.0+wvcus",
"electron-builder": "^24.9.1",
"wait-on": "^7.2.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"web": "cd react_src && yarn web",
"start:remote": "concurrently \"yarn compile:remote\" \"yarn web\" \"cross-env-shell IS_DEV=true electron .\"",
"start:electron" : "concurrently \"yarn compile:remote\" \"cross-env-shell IS_DEV=true electron .\"",
"compile:remote": "tsc",
"start:local": "yarn compile:local && electron .",
"start:local_debug": "yarn compile:local && electron . --inspect=9222 --remote-debugging-port=9223",
"compile:local": "tsc && cd react_src && yarn web-build",
"debug": "electron --inspect=8888 .",
"build": "yarn compile:local && electron-builder ",
"release": "yarn build && electron-builder --publish always",
"make-cert": "electron-builder create-self-signed-cert -p fabyday & mkdir private & mv fabyday.pfx private/fabyday.pfx"
},
"dependencies": {
"@cliqz/adblocker-electron": "^1.26.12",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/lodash.isequal": "^4.5.8",
"@types/node": "^16.18.70",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"cross-fetch": "^4.0.0",
"electron-chrome-extensions": "^3.10.1",
"electron-is-dev": "^3.0.1",
"electron-log": "^5.0.3",
"electron-preferences": "^2.8.2",
"electron-updater": "^6.1.7",
"fetch": "^1.1.0",
"loadash": "^1.0.0",
"node-dwmapi": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"typescript": "^5.3.3",
"web-vitals": "^2.1.4"
},
"build": {
"files": [
"**/*"
],
"extends": null,
"appId": "day.faby.kawaikara",
"copyright": "Copyright fabyday",
"electronDownload": {
"mirror": "https://github.com/castlabs/electron-releases/releases/download/v"
},
"afterSign": "./build/afterSign.js",
"win": {
"verifyUpdateCodeSignature": false,
"target": [
"nsis",
"zip"
],
"icon": "kawaikara.ico",
"extraResources": [
{
"from": "./build",
"to": ".",
"filter": [
"**/*.ico"
]
}
],
"publish": [
"github"
]
},
"directories": {
"buildResources": "build",
"output": "output_dist"
}
}
}