-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.72 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.72 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
{
"type": "module",
"engines": {
"node": ">=22.0"
},
"scripts": {
"start": "parcel watch src/manifest.json --host localhost",
"build": "parcel build src/manifest.json",
"build:chrome": "node scripts/build.js chrome",
"build:edge": "node scripts/build.js edge",
"build:firefox": "node scripts/build.js firefox",
"build:safari": "node scripts/build-safari.js",
"build:safari:release": "node scripts/build-safari.js --release",
"build:all": "node scripts/build.js all",
"lint": "biome check",
"lint:fix": "biome check --write",
"test": "biome check && vitest run",
"test:e2e": "node scripts/test-e2e.js",
"test:watch": "vitest",
"version:get": "node scripts/version.js get",
"version:patch": "node scripts/version.js patch",
"version:minor": "node scripts/version.js minor",
"version:major": "node scripts/version.js major",
"submit:chrome": "node scripts/submit.js chrome",
"submit:edge": "node scripts/submit.js edge",
"submit:firefox": "node scripts/submit.js firefox",
"submit:all": "node scripts/submit.js all",
"submit:dry-run": "node scripts/submit.js all --dry-run",
"release": "npm run build:all && npm run submit:all"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@parcel/config-webextension": "^2.16.4",
"@parcel/reporter-bundle-analyzer": "^2.16.4",
"@parcel/reporter-bundle-buddy": "^2.16.4",
"chrome-webstore-upload-cli": "^3.5.0",
"jsdom": "^29.1.0",
"parcel": "^2.16.4",
"puppeteer": "^24.42.0",
"vitest": "^4.1.5",
"web-ext-submit": "^7.8.0"
},
"targets": {
"default": {
"engines": {
"browsers": ">= 50%"
}
}
},
"overrides": {
"web-ext": "^9.2.0"
}
}