-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.06 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
58
59
60
61
{
"name": "capture-all",
"private": true,
"version": "0.1.0",
"description": "Chrome MV3 browser debugging extension for structured capture, export, and AI agent querying",
"keywords": [
"chrome-extension",
"browser-debugging",
"browser-automation",
"mcp",
"developer-tools"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TuTouPower/capture_all.git"
},
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && npm run copy:locales && npm run build:bridge && npm run build:mcp && npm run build:zip",
"copy:locales": "node scripts/copy_locales.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"scan:tracked-tree": "node scripts/scan_tracked_tree.mjs",
"generate:icons": "node scripts/generate_icons.mjs",
"serve:e2e": "npm run build && vite preview --host 127.0.0.1 --port 4174",
"bridge": "tsx src/bridge/main.ts",
"mcp": "tsx src/mcp/main.ts",
"test:e2e": "playwright test --project=e2e",
"test:e2e:all": "playwright test",
"test:e2e:server": "npx tsx tests/support/fixtures/server.ts",
"build:bridge": "esbuild src/bridge/main.ts --bundle --platform=node --format=esm --external:ws --outfile=artifacts/bridge/bridge.mjs",
"build:mcp": "esbuild src/mcp/main.ts --bundle --platform=node --format=esm --external:ws --outfile=artifacts/mcp/mcp.mjs",
"build:zip": "cd artifacts/dist && zip -r ../extension.zip ."
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.7.1",
"@playwright/test": "^1.60.0",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^4.1.10",
"esbuild": "^0.28.1",
"fake-indexeddb": "^6.2.5",
"jsdom": "^29.1.1",
"playwright": "^1.60.0",
"tsx": "^4.22.4",
"typescript": "^5.5.0",
"vite": "^8.1.4",
"vitest": "^4.1.10",
"yaml": "^2.9.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"fflate": "^0.8.3",
"zod": "^4.4.3"
}
}