forked from Alex313031/quark-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 3.27 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
{
"name": "quark-player",
"appName": "quark-player",
"productName": "Quark Player",
"applicationId": "com.alex313031.quark-player",
"version": "3.4.3",
"description": "Electron based Web Video Services Player. Supporting Netflix, Youtube, Twitch, Floatplane and More.",
"main": "./src/main.js",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "electron ./src",
"winstart": "electron src",
"test": "npm run eslint ; npm run stylelint",
"lint": "npm run eslint ; npm run stylelint",
"burn": "rimraf package-lock.json && rimraf src/package-lock.json && npm run clean",
"clean": "rimraf dist/ && rimraf test/ && rimraf src/node_modules/ && rimraf node_modules/",
"distclean": "rimraf dist",
"eslint": "eslint \"src/**/*.js*\"",
"stylelint": "stylelint \"src/**/*.css*\"",
"build": "cross-env NODE_ENV=production electron-builder --dir",
"buildWin": "cross-env NODE_ENV=production electron-builder -w --x64 --dir && cross-env NODE_ENV=production electron-builder -w --ia32 --dir",
"buildMac": "cross-env NODE_ENV=production electron-builder -m --x64 --dir && cross-env NODE_ENV=production electron-builder -m --arm64 --dir",
"dev": "npm run test && cross-env QUARK_TEST=1 NODE_ENV=development ELECTRON_ENABLE_LOGGING=1 electron --enable-logging=file --user-data-dir=./test ./src",
"buildstart": "cross-env NODE_ENV=production electron-builder --dir && ./dist/linux-unpacked/quark-player",
"distLinux": "cross-env NODE_ENV=production electron-builder -l",
"distWin": "cross-env NODE_ENV=production electron-builder -w --x64 --pd dist/win-unpacked && cross-env NODE_ENV=production electron-builder -w --ia32 --pd dist/win-ia32-unpacked",
"distMac": "cross-env NODE_ENV=production electron-builder -m --x64 --pd dist/mac && cross-env NODE_ENV=production electron-builder -m --arm64 --pd dist/mac-arm64",
"sign": "python3 -m castlabs_evs.vmp sign-pkg dist/win-unpacked",
"postinstall": "patch-package && electron-builder install-app-deps"
},
"repository": "https://github.com/Alex313031/quarkplayer.git",
"author": "Alex313031 <[email protected]>",
"homepage": "https://github.com/Alex313031/quarkplayer#readme",
"bugs": {
"url": "https://github.com/Alex313031/quarkplayer/issues"
},
"website": "https://thorium.rocks/quark-player",
"license": "MIT",
"copyright": "Copyright © 2024 Alex313031",
"devDependencies": {
"asar": "3.2.0",
"cross-env": "7.0.3",
"electron": "git+https://github.com/castlabs/electron-releases#v28.3.3+wvcus",
"electron-builder": "23.6.0",
"eslint": "8.44.0",
"patch-package": "7.0.2",
"postinstall-postinstall": "2.1.0",
"rimraf": "4.4.1",
"stylelint": "14.16.1",
"stylelint-config-standard": "29.0.0"
},
"dependencies": {
"@cliqz/adblocker": "1.26.16",
"@cliqz/adblocker-content": "1.26.16",
"@cliqz/adblocker-electron": "1.26.16",
"@cliqz/adblocker-electron-preload": "1.26.16",
"@cliqz/adblocker-extended-selectors": "1.26.16",
"@electron/remote": "2.1.2",
"electron-context-menu": "3.6.1",
"electron-log": "5.1.7",
"electron-prompt": "1.7.0",
"electron-store": "8.2.0",
"node-fetch": "2.7.0"
},
"resolutions": {
"electron": "git+https://github.com/castlabs/electron-releases#v28.3.3+wvcus"
}
}