forked from FreeTubeApp/FreeTube
-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 5.7 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 5.7 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
132
{
"name": "freetube",
"productName": "FreeTube",
"description": "A private YouTube client",
"version": "0.23.8",
"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/FreeTubeApp/FreeTube.git"
},
"bugs": {
"url": "https://github.com/FreeTubeApp/FreeTube/issues"
},
"scripts": {
"build": "run-s patch-shaka pack build-release",
"build:arm64": "run-s patch-shaka pack build-release:arm64",
"build:arm32": "run-s patch-shaka 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": "run-s patch-shaka debug-runner",
"debug-runner": "node _scripts/dev-runner.js --remote-debug",
"dev": "run-s patch-shaka dev-runner",
"dev:web": "node _scripts/dev-runner.js --web",
"dev-runner": "node _scripts/dev-runner.js",
"get-instances": "node _scripts/getInstances.js",
"patch-shaka": "node _scripts/patchShaka.mjs",
"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 --node-env=production --config _scripts/webpack.main.config.js",
"pack:renderer": "webpack --mode=production --node-env=production --config _scripts/webpack.renderer.config.js",
"pack:preload": "webpack --mode=production --node-env=production --config _scripts/webpack.preload.config.js",
"pack:web": "webpack --mode=production --node-env=production --config _scripts/webpack.web.config.js",
"pack:botGuardScript": "webpack --config _scripts/webpack.botGuardScript.config.js",
"pack:botGuardScript:android": "webpack --config _scripts/webpack.botGuardScript.android.config.js",
"pack:android:core": "webpack --mode=production --node-env=production --config _scripts/webpack.android.config.js",
"pack:android:dev:core": "webpack --mode=development --node-env=development --config _scripts/webpack.android.config.js",
"pack:android": "run-s pack:botGuardScript:android pack:android:core",
"pack:android:dev": "run-s pack:botGuardScript:android pack:android:dev:core",
"postinstall": "yarn run --silent patch-shaka",
"checkforbadtemplates": "node _scripts/findMissingTemplates.mjs",
"ci": "yarn install --silent --frozen-lockfile --network-concurrency 1"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/vue-fontawesome": "^2.0.10",
"@seald-io/nedb": "https://github.com/MarmadileManteater/nedb.git",
"autolinker": "^4.1.5",
"bgutils-js": "^3.2.0",
"core-js": "^3.41.0",
"electron-context-menu": "^4.1.0",
"marked": "^16.1.2",
"portal-vue": "^2.1.7",
"process": "^0.11.10",
"shaka-player": "^4.14.26",
"swiper": "^11.2.10",
"vue": "^2.7.16",
"vue-i18n": "^8.28.2",
"vue-observe-visibility": "^1.0.0",
"vue-router": "^3.6.5",
"vuex": "^3.6.2",
"youtubei.js": "^15.0.1"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@double-great/stylelint-a11y": "^3.0.4",
"@eslint/js": "^9.33.0",
"@intlify/eslint-plugin-vue-i18n": "^3.2.0",
"babel-loader": "^10.0.0",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.2",
"electron": "^38.0.0",
"electron-builder": "^26.0.19",
"eslint": "^9.33.0",
"eslint-plugin-jsdoc": "^52.0.4",
"eslint-plugin-jsonc": "^2.20.1",
"eslint-plugin-unicorn": "^60.0.0",
"eslint-plugin-vue": "^10.4.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"eslint-plugin-yml": "^1.18.0",
"globals": "^16.3.0",
"html-webpack-plugin": "^5.6.3",
"js-yaml": "^4.1.0",
"json-minimizer-webpack-plugin": "^5.0.1",
"lefthook": "^1.12.2",
"mini-css-extract-plugin": "^2.9.3",
"neostandard": "^0.12.2",
"npm-run-all2": "^8.0.4",
"postcss": "^8.5.6",
"postcss-scss": "^4.0.9",
"sass": "^1.90.0",
"sass-loader": "^16.0.5",
"stylelint": "^16.23.1",
"string-width": "4.2.3",
"strip-ansi": "6.0.1",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-config-standard": "^39.0.0",
"stylelint-high-performance-animation": "^1.11.0",
"stylelint-use-logical-spec": "^5.0.1",
"tree-kill": "1.2.2",
"vue-devtools": "^5.1.4",
"vue-eslint-parser": "^10.2.0",
"vue-loader": "^15.10.0",
"webpack": "^5.101.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"wrap-ansi": "7.0.0",
"yaml-eslint-parser": "^1.3.0"
}
}