-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 5.28 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 5.28 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "freetube-plus-tabs",
"productName": "FreeTube + Tabs",
"description": "A private YouTube client with browser-style tabs",
"version": "0.24.6",
"license": "AGPL-3.0-or-later",
"main": "./dist/main.js",
"private": true,
"author": {
"name": "FreeTube Team",
"email": "FreeTubeApp@protonmail.com",
"url": "https://github.com/FreeTubeApp/FreeTube"
},
"repository": {
"type": "git",
"url": "git+https://github.com/countgitmick/FreeTubePlusTabs.git"
},
"bugs": {
"url": "https://github.com/countgitmick/FreeTubePlusTabs/issues"
},
"scripts": {
"postinstall": "node _scripts/patch-youtubei.js",
"build": "run-s pack build-release",
"build:arm64": "run-s pack build-release:arm64",
"build:arm32": "run-s pack build-release:arm32",
"build-release": "node _scripts/build.mjs",
"build-release:arm64": "node _scripts/build.mjs arm64",
"build-release:arm32": "node _scripts/build.mjs arm32",
"clean": "node _scripts/clean.mjs",
"debug": "node _scripts/dev-runner.js --remote-debug",
"dev": "node _scripts/dev-runner.js",
"dev:web": "node _scripts/dev-runner.js --web",
"get-instances": "node _scripts/getInstances.js",
"get-regions": "node _scripts/getRegions.mjs",
"lint-all": "run-p lint lint-json",
"lint": "run-p eslint-lint lint-style",
"lint-fix": "run-p eslint-lint-fix lint-style-fix",
"eslint-lint": "eslint --config eslint.config.mjs \"src/**/*.js\" \"src/renderer/**/*.vue\" \"static/*.js\" \"_scripts/*.js\" \"_scripts/**/*.mjs\"",
"eslint-lint-fix": "eslint --config eslint.config.mjs --fix \"src/**/*.js\" \"src/renderer/**/*.vue\" \"static/*.js\" \"_scripts/*.js\" \"_scripts/**/*.mjs\"",
"lint-json": "eslint --config eslint.config.mjs \"static/**/*.json\"",
"lint-style": "stylelint \"src/**/*.{css,scss}\"",
"lint-style-fix": "stylelint --fix \"src/**/*.{css,scss}\"",
"lint-yml": "eslint --config eslint.config.mjs \"**/*.yml\" \"**/*.yaml\"",
"pack": "run-p pack:main pack:renderer pack:preload pack:botGuardScript && node _scripts/injectAllowedPaths.mjs",
"pack:main": "webpack --mode=production --config-node-env=production --config _scripts/webpack.main.config.js",
"pack:renderer": "webpack --mode=production --config-node-env=production --config _scripts/webpack.renderer.config.js",
"pack:preload": "webpack --mode=production --config-node-env=production --config _scripts/webpack.preload.config.js",
"pack:web": "webpack --mode=production --config-node-env=production --config _scripts/webpack.web.config.js",
"pack:botGuardScript": "webpack --config _scripts/webpack.botGuardScript.config.js",
"checkforbadtemplates": "node _scripts/findMissingTemplates.mjs",
"ci": "yarn install --silent --frozen-lockfile --network-concurrency 1"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/free-regular-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/vue-fontawesome": "^3.2.0",
"@seald-io/nedb": "^4.1.2",
"autolinker": "^4.1.5",
"bgutils-js": "^3.2.0",
"dompurify": "^3.4.1",
"electron-context-menu": "^4.1.2",
"googlevideo": "^4.0.4",
"marked": "^18.0.2",
"process": "^0.11.10",
"shaka-player": "^5.1.2",
"swiper": "^12.1.2",
"vue": "^3.5.33",
"vue-i18n": "^11.4.0",
"vue-observe-visibility": "^2.0.0-alpha.1",
"vue-router": "^5.0.6",
"vuex": "^4.1.0",
"yaml": "^2.8.3",
"youtubei.js": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@double-great/stylelint-a11y": "^3.4.10",
"@eslint/js": "^10.0.1",
"@intlify/eslint-plugin-vue-i18n": "^4.3.0",
"@stylistic/eslint-plugin": "^5.10.0",
"babel-loader": "^10.1.1",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"css-minimizer-webpack-plugin": "^8.0.0",
"electron": "^42.0.1",
"electron-builder": "^26.8.1",
"eslint": "^10.2.1",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-jsonc": "^3.1.2",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-promise": "^7.3.0",
"eslint-plugin-unicorn": "^64.0.0",
"eslint-plugin-vue": "^10.9.0",
"eslint-plugin-vuejs-accessibility": "^2.5.0",
"eslint-plugin-yml": "^3.3.1",
"globals": "^17.5.0",
"html-webpack-plugin": "^5.6.7",
"js-yaml": "^4.1.1",
"json-minimizer-webpack-plugin": "^5.0.1",
"lefthook": "^2.1.6",
"mini-css-extract-plugin": "^2.10.2",
"npm-run-all2": "^8.0.4",
"postcss": "^8.5.12",
"postcss-scss": "^4.0.9",
"sass": "^1.99.0",
"sass-loader": "^16.0.7",
"stylelint": "^17.9.1",
"stylelint-config-sass-guidelines": "^13.0.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-high-performance-animation": "^2.0.0",
"stylelint-use-logical-spec": "^5.0.1",
"tree-kill": "1.2.2",
"vue-eslint-parser": "^10.2.0",
"vue-loader": "^17.4.2",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.2.3",
"yaml-eslint-parser": "^2.0.0"
},
"resolutions": {
"picomatch": "^4.0.4",
"micromatch/picomatch": "^2.3.2",
"anymatch/picomatch": "^2.3.2",
"serialize-javascript": "^7.0.5",
"yaml": "^2.8.3"
}
}