-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1016 Bytes
/
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
{
"name": "media-controller-extension",
"version": "0.2.6",
"description": "A Firefox browser extension to control media across tabs.",
"repository": "github:tnychn/media-controller-extension",
"author": {
"name": "Tony Chan",
"email": "[email protected]",
"url": "https://github.com/tnychn"
},
"license": "MIT",
"scripts": {
"build": "web-ext build -s ./src -a . -n media-controller.firefox.zip",
"start": "web-ext run -s ./src --devtools"
},
"prettier": {
"tabWidth": 2,
"printWidth": 120
},
"eslintConfig": {
"env": {
"es6": true,
"browser": true,
"webextensions": true
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"extends": [
"eslint:recommended",
"prettier"
]
},
"devDependencies": {
"@types/firefox-webext-browser": "^111.0.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"prettier": "^2.8.8",
"web-ext": "^7.10.0"
}
}