-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
76 lines (76 loc) · 2.68 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
{
"name": "holo-schedule",
"version": "2.1.3",
"description": "One browser extension COVERs all livestreams.",
"repository": "https://github.com/YunzheZJU/holo-schedule",
"author": "Yunzhe <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=14.0"
},
"browserslist": [
"Firefox >= 57",
"Chrome >= 88"
],
"scripts": {
"dev": "webpack --mode development --watch",
"dev:chrome": "webpack --mode development --env chrome --watch",
"build": "webpack --mode production",
"build:chrome": "webpack --mode production --env chrome",
"web-ext": "web-ext run -s dist",
"web-ext:build": "yarn run build && web-ext build -s dist -o",
"web-ext:build:chrome": "yarn run build:chrome && web-ext build -s dist -o",
"start": "yarn run web-ext --start-url about:debugging#/runtime/this-firefox",
"start:profile": "yarn run start --firefox-profile \"C:\\Users\\Yunzhe\\Desktop\\firefox-profile\" --keep-profile-changes",
"start:chrome": "yarn run web-ext -t chromium --start-url chrome://extensions/",
"lint:css": "stylelint \"**/*.{css,less,vue}\"",
"lint:css:fix": "yarn run lint:css --fix",
"lint:ext": "web-ext lint -s dist",
"lint:js": "eslint --ext .js,.vue src",
"lint:js:fix": "yarn run lint:js --fix",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@intlify/eslint-plugin-vue-i18n": "^1.2.0",
"@intlify/vue-i18n-loader": "^4.1.0",
"babel-jest": "^27.4.5",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^6.5.1",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-vue": "^8.2.0",
"generate-json-from-js-webpack-plugin": "^0.1.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.4.5",
"jest-webextension-mock": "^3.7.19",
"json5-jest": "^1.0.1",
"json5-loader": "^4.0.1",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"resolve-entry-modules-webpack-plugin": "npm:@yunzhe35p/resolve-entry-modules-webpack-plugin",
"stylelint": "^13.13.1",
"stylelint-order": "^4.1.0",
"vue-loader": "^16.8.3",
"vue-style-loader": "^4.1.3",
"web-ext": "^6.6.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-target-webextension": "^1.0.2"
},
"dependencies": {
"@vue/compiler-sfc": "^3.2.26",
"core-js": "^3.20.1",
"dayjs": "npm:@yunzhe35p/dayjs",
"lodash": "^4.17.21",
"vue": "^3.2.26",
"vue-fragment": "npm:@yunzhe35p/vue-fragment",
"vue-i18n": "^9.1.9",
"vuex": "^4.0.2",
"webextension-polyfill": "^0.8.0"
}
}