-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 2.8 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "firefox-owncast-extension",
"version": "0.5.0",
"author": "Fabian Siegel <fabians1999@gmail.com>",
"license": "MIT",
"scripts": {
"build": "webpack && web-ext build",
"watch": "webpack --watch",
"lint": "eslint src/ --ext .ts --ext .js --ext .vue && web-ext lint",
"start": "web-ext run"
},
"devDependencies": {
"@types/webextension-polyfill": "^0.8.3",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"@volar/vue-language-server": "^0.33.9",
"@vue/compiler-sfc": "^3.2.29",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.2.0",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-mozilla": "^2.11.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-vue": "^8.5.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.6.0",
"sass": "^1.35.2",
"sass-loader": "^12.1.0",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"web-ext": "6.8.0",
"webextension-polyfill-ts": "^0.26.0",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@cfworker/json-schema": "^1.12.0",
"@heroicons/vue": "^1.0.6",
"pinia": "^2.0.12",
"urlcat": "^2.0.4",
"vue": "^3.2.29",
"vue-loader": "^17.0.0",
"webextension-polyfill": "^0.9.0"
},
"webExt": {
"sourceDir": "addon",
"build": {
"overwriteDest": true
}
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"webextensions": true
},
"globals": {
"browser": "off",
"process": "readonly",
"OWNCAST_BROWSER_EXTENSION_VERSION": "readonly"
},
"extends": [
"eslint:recommended",
"plugin:vue/vue3-recommended",
"plugin:@typescript-eslint/recommended",
"standard"
],
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser",
"sourceType": "module",
"ecmaVersion": 2018
},
"plugins": [
"mozilla",
"@typescript-eslint"
],
"rules": {
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"no-tabs": [
"error",
{
"allowIndentationTabs": true
}
],
"comma-dangle": [
"error",
"always-multiline"
],
"no-unused-vars": [
"error",
{
"args": "none"
}
],
"eqeqeq": 2,
"quotes": [
"error",
"single"
],
"camelcase": 2,
"curly": 2,
"object-curly-spacing": [
"error",
"always"
],
"space-in-parens": [
"error",
"never"
]
}
}
}