-
Notifications
You must be signed in to change notification settings - Fork 162
/
package.json
49 lines (49 loc) · 1.08 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
{
"type": "module",
"engines": {
"node": ">=16.0"
},
"scripts": {
"start": "parcel watch src/manifest.json --host localhost",
"build": "parcel build src/manifest.json",
"test": "xo",
"release": "release:*",
"release:ff": "npx web-ext-submit --source-dir src",
"release:chrome": "npx webstore upload --source=isometric-contributions.zip --auto-publish"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@parcel/config-webextension": "^2.12.0",
"@parcel/reporter-bundle-analyzer": "^2.12.0",
"@parcel/reporter-bundle-buddy": "^2.12.0",
"chrome-webstore-upload-cli": "^3.3.1",
"parcel": "^2.12.0",
"web-ext-submit": "^7.8.0",
"xo": "^0.59.3"
},
"xo": {
"prettier": true,
"semicolon": false,
"space": true,
"prefer-numeric-literals": 0,
"global": [
"obelisk",
"chrome"
],
"env": [
"browser"
],
"rules": {
"unicorn/prefer-top-level-await": 0
}
},
"targets": {
"default": {
"engines": {
"browsers": ">= 50%"
}
}
}
}