-
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) · 968 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 968 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
{
"name": "ext-ray",
"version": "0.0.2",
"private": true,
"type": "module",
"license": "GPL-3.0-only",
"description": "Local-only Chromium (MV3) extension that audits your other extensions' security — on-device, no backend.",
"scripts": {
"build": "vite build && BUILD_TARGET=sw vite build",
"watch:sw": "BUILD_TARGET=sw vite build --watch",
"verify:build": "npm run build && node scripts/check-dist.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:debug": "EXTRAY_DEBUG=sec.*,perf.*,calc.* vitest run --reporter=verbose",
"typecheck": "tsc --noEmit",
"test:e2e": "npm run build && playwright test",
"test:e2e:headed": "HEADED=1 npm run test:e2e",
"shots": "npm run build && node scripts/shots.mjs"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/chrome": "^0.1.43",
"@types/node": "^25.9.1",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vitest": "^4.1.8"
}
}