-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.05 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
{
"private": true,
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:e2e": "playwright test tests/e2e-playwright",
"test:e2e:provider": "playwright test tests/e2e-playwright/provider-contract.spec.js",
"test:e2e:popup": "playwright test tests/e2e-playwright/popup-model-loading.spec.js",
"test:e2e:all": "playwright test tests/e2e-playwright",
"lint": "biome check .",
"lint:fix": "biome check . --fix",
"build:clean": "rm -rf dist web-ext-artifacts correctly-chrome.zip correctly-firefox.xpi",
"build:release": "npm run build:release:chrome && npm run build:release:firefox",
"build:release:chrome": "node scripts/build-release.mjs --target=chrome",
"build:release:firefox": "node scripts/build-release.mjs --target=firefox"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@vitest/ui": "4.1.7",
"esbuild": "0.27.0",
"happy-dom": "20.9.0",
"playwright": "^1.60.0",
"html-minifier-terser": "7.2.0",
"vitest": "4.1.7"
}
}