-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 3.21 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "tabnexus",
"version": "1.0.5",
"description": "A local-first Chrome workspace for browser tabs, intent-first AI organization, and Agent collaboration through MCP.",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KaichenCurry/TabNexus.git"
},
"homepage": "https://github.com/KaichenCurry/TabNexus#readme",
"bugs": {
"url": "https://github.com/KaichenCurry/TabNexus/issues"
},
"keywords": [
"chrome-extension",
"tab-manager",
"workspace",
"local-first",
"model-context-protocol",
"mcp",
"ai-agent"
],
"bin": {
"tabnexus-mcp": "agent/bridge/tabnexus-mcp.mjs"
},
"engines": {
"node": ">=22.13.0"
},
"type": "module",
"scripts": {
"dev": "vite --config config/vite.config.ts --host 127.0.0.1",
"build": "node scripts/build-agent-packages.mjs && tsc -b && vite build --config config/vite.config.ts",
"build:portable": "TABNEXUS_PORTABLE_BUILD=1 npm run build",
"release:chrome": "npm run build:portable && node scripts/package-chrome-release.mjs",
"release:mcp": "node scripts/package-mcp-runtime.mjs",
"release:codex": "node scripts/package-codex-installer.mjs",
"release:assets": "npm run release:chrome && npm run release:mcp && npm run release:codex",
"typecheck": "tsc -b --pretty false",
"test": "vitest run --config config/vite.config.ts",
"test:watch": "vitest --config config/vite.config.ts",
"test:e2e": "npm run build && playwright test --config config/playwright.config.ts",
"m0:cluster": "tsx scripts/m0-cluster.ts",
"m0:score": "tsx scripts/m0-score.ts",
"m0:h2": "tsx scripts/h2-export.ts",
"bridge:install": "node scripts/install-native-host.mjs",
"bridge:uninstall": "node scripts/install-native-host.mjs --uninstall",
"bridge:check": "node scripts/check-mcp.mjs",
"bridge:verify": "node scripts/verify-bridge.mjs",
"bridge:audit": "node scripts/audit-mcp-installations.mjs",
"mcp:test": "node scripts/test-mcp-capabilities.mjs",
"agent:package": "node scripts/build-agent-packages.mjs",
"eval:mcp:generate": "node agent/plugins/tabnexus/skills/tabnexus-mcp-evals/scripts/run-evals.mjs generate",
"eval:mcp:validate": "node agent/plugins/tabnexus/skills/tabnexus-mcp-evals/scripts/run-evals.mjs validate",
"eval:mcp:contract": "node agent/plugins/tabnexus/skills/tabnexus-mcp-evals/scripts/run-evals.mjs contract",
"eval:mcp:smoke": "node agent/plugins/tabnexus/skills/tabnexus-mcp-evals/scripts/run-evals.mjs run --suite smoke --trials 3 --confirm-cost",
"check": "npm run typecheck && npm test && npm run mcp:test && npm run bridge:check && npm run build"
},
"dependencies": {
"@xyflow/react": "12.11.2",
"react": "19.2.7",
"react-dom": "19.2.7"
},
"devDependencies": {
"@playwright/test": "1.61.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/chrome": "0.2.2",
"@types/node": "^24.0.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "6.0.3",
"jsdom": "29.1.1",
"tsx": "4.23.1",
"typescript": "7.0.2",
"vite": "8.1.5",
"vitest": "4.1.10"
},
"packageManager": "pnpm@11.9.0"
}