-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.5 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
{
"name": "ctxpool",
"version": "0.1.1",
"description": "Local-first handoff packets for AI coding agents.",
"type": "module",
"bin": {
"ctxpool": "dist/cli.js"
},
"files": [
"dist",
"dist-web",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "npm run build:server && npm run build:web",
"build:server": "tsc -p tsconfig.json",
"build:web": "vite build",
"prepack": "npm run build",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.web.json --noEmit"
},
"keywords": [
"ai",
"mcp",
"handoff",
"codex",
"claude"
],
"license": "MIT",
"engines": {
"node": ">=22.5.0"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@modelcontextprotocol/sdk": "^1.24.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commander": "^14.0.2",
"lucide-react": "^1.16.0",
"radix-ui": "^1.4.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"sql.js": "^1.14.1",
"tailwind-merge": "^3.6.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/sql.js": "^1.4.11",
"@vitejs/plugin-react": "^6.0.2",
"tailwindcss": "^4.3.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^8.0.14",
"vitest": "^4.0.14"
}
}