-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.42 KB
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
{
"type": "module",
"engines": {
"node": ">=22.0"
},
"scripts": {
"start": "parcel watch src/manifest.json --host localhost",
"build": "parcel build src/manifest.json",
"test": "xo && vitest run",
"test:watch": "vitest",
"release": "release:*",
"release:ff": "npx web-ext-submit --source-dir src",
"release:chrome": "npx webstore upload --source=isometric-contributions.zip --auto-publish"
},
"devDependencies": {
"@parcel/config-webextension": "^2.16.3",
"@parcel/reporter-bundle-analyzer": "^2.16.3",
"@parcel/reporter-bundle-buddy": "^2.16.3",
"chrome-webstore-upload-cli": "^3.5.0",
"jsdom": "^27.4.0",
"parcel": "^2.16.3",
"vitest": "^3.0.0",
"web-ext-submit": "^7.8.0",
"xo": "^1.2.3"
},
"xo": {
"prettier": true,
"semicolon": false,
"space": true,
"languageOptions": {
"globals": {
"obelisk": "readonly",
"chrome": "readonly",
"document": "readonly",
"localStorage": "readonly",
"getComputedStyle": "readonly",
"MutationObserver": "readonly"
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"unicorn/prefer-top-level-await": 0,
"n/no-unsupported-features/node-builtins": "off"
}
},
"targets": {
"default": {
"engines": {
"browsers": ">= 50%"
}
}
},
"overrides": {
"web-ext": "^9.2.0"
}
}