-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 914 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 914 Bytes
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
{
"name": "dropweb-proxy",
"version": "0.1.3",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "wxt -b chrome --mv3",
"dev:firefox": "wxt -b firefox --mv3",
"build:chrome": "wxt build -b chrome --mv3",
"build:firefox": "wxt build -b firefox --mv3",
"build": "bun run build:chrome && bun run build:firefox",
"zip:chrome": "wxt zip -b chrome --mv3",
"zip:firefox": "wxt zip -b firefox --mv3",
"zip": "bun run zip:chrome && bun run zip:firefox",
"check": "biome check . && tsc --noEmit",
"test": "vitest run",
"test:e2e": "wxt build -b chrome --mv3 && playwright test",
"postinstall": "wxt prepare"
},
"devDependencies": {
"@biomejs/biome": "2.5.5",
"@playwright/test": "^1.54.1",
"@types/node": "^24.0.15",
"happy-dom": "^18.0.1",
"typescript": "^5.9.3",
"vitest": "^4.1.5",
"wxt": "~0.20.27"
}
}