-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.09 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
{
"private": true,
"scripts": {
"build": "parcel build source/manifest.json --dist-dir distribution --no-cache --no-source-maps",
"lint": "xo",
"fix": "xo --fix",
"test": "npm run lint && npm run build",
"start": "parcel watch source/manifest.json --dist-dir distribution --no-cache --no-hmr"
},
"browserslist": [
"Chrome 115",
"Firefox 115"
],
"xo": {
"envs": [
"browser",
"webextensions"
],
"extends": "xo-react",
"settings": {
"react": {
"version": "16.13"
}
},
"rules": {
"unicorn/prefer-top-level-await": "off"
}
},
"dependencies": {
"delegate-it": "^6.1.0",
"dom-chef": "^5.1.1",
"doma": "^4.0.0",
"element-ready": "^7.0.0",
"push-form": "^1.0.1",
"select-dom": "^9.0.0",
"webext-base-css": "^1.4.4",
"webext-options-sync": "^4.2.3"
},
"devDependencies": {
"@parcel/config-webextension": "^2.12.1-canary.3330",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"parcel": "^2.0.0-canary.1705",
"xo": "^0.59.3"
},
"webExt": {
"sourceDir": "distribution"
}
}