-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
69 lines (69 loc) · 1.42 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
{
"private": true,
"type": "module",
"scripts": {
"build": "parcel build --no-cache --no-content-hash",
"lint": "xo",
"test": "xo && npm run build",
"watch": "parcel watch --no-cache --no-content-hash --no-hmr"
},
"xo": {
"envs": [
"browser",
"webextensions"
],
"rules": {
"import/no-unassigned-import": "off",
"unicorn/prefer-top-level-await": "off",
"unicorn/prefer-set-has": "off",
"unicorn/better-regex": "off"
}
},
"dependencies": {
"@primer/octicons": "^19.8.0",
"webext-base-css": "^1.4.4",
"webext-domain-permission-toggle": "^4.0.1",
"webext-dynamic-content-scripts": "^10.0.0",
"webext-options-sync-per-domain": "^4.2.0"
},
"devDependencies": {
"@parcel/config-webextension": "^2.10.3",
"@parcel/transformer-image": "^2.10.3",
"@parcel/transformer-inline-string": "^2.10.3",
"bundlewatch": "^0.3.3",
"parcel": "^2.10.3",
"xo": "^0.56.0"
},
"engines": {
"node": ">=20"
},
"@parcel/resolver-default": {
"packageExports": true
},
"bundlewatch": {
"files": [
{
"path": "distribution/*"
}
]
},
"targets": {
"main": false,
"module": false,
"default": {
"engines": {
"browsers": "Chrome 110, Firefox 110"
},
"source": "./source/manifest.json",
"distDir": "./distribution"
}
},
"webExt": {
"run": {
"startUrl": [
"https://github.com/fregante/github-issue-link-status/issues/57"
]
},
"sourceDir": "distribution"
}
}