-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 4.01 KB
/
Copy pathpackage.json
File metadata and controls
135 lines (135 loc) · 4.01 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "commandmate",
"version": "0.11.0",
"description": "A local control plane for agent CLIs — orchestration and visibility for Claude Code, Codex, Gemini CLI, and more across Git worktrees",
"keywords": [
"claude-code",
"codex-cli",
"gemini-cli",
"agent-cli",
"cli-orchestration",
"ai-coding",
"git-worktree",
"coding-agent",
"session-manager",
"tmux",
"cli",
"developer-tools"
],
"repository": {
"type": "git",
"url": "https://github.com/Kewton/CommandMate.git"
},
"bin": {
"commandmate": "./bin/commandmate.js"
},
"engines": {
"node": ">=22.0.0"
},
"files": [
"bin/",
"dist/",
".next/",
"!.next/cache",
"public/",
".env.example"
],
"scripts": {
"dev": "tsx server.ts",
"build": "next build",
"build:cli": "tsc --project tsconfig.cli.json",
"build:server": "tsc --project tsconfig.server.json && tsc-alias -p tsconfig.server.json",
"build:all": "npm run build && npm run build:cli && npm run build:server",
"prepublishOnly": "npm run build:all",
"start": "NODE_ENV=production node dist/server/server.js",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"test": "NODE_ENV=test vitest",
"test:ui": "NODE_ENV=test vitest --ui",
"test:coverage": "NODE_ENV=test vitest --coverage",
"test:unit": "NODE_ENV=test vitest run tests/unit",
"test:integration": "NODE_ENV=test vitest run tests/integration",
"test:e2e": "playwright test",
"test:watch": "NODE_ENV=test vitest --watch",
"db:init": "tsx scripts/init-db.ts",
"db:reset": "rm -f db.sqlite && npm run db:init"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@marp-team/marp-core": "^4.3.0",
"@radix-ui/react-checkbox": "^1.3.7",
"@radix-ui/react-dropdown-menu": "^2.1.20",
"@radix-ui/react-radio-group": "^1.4.3",
"@radix-ui/react-select": "^2.3.3",
"@radix-ui/react-switch": "^1.3.3",
"@radix-ui/react-tabs": "^1.1.17",
"@radix-ui/react-tooltip": "^1.2.12",
"@tanstack/react-virtual": "^3.13.26",
"ansi-to-html": "^0.7.2",
"better-sqlite3": "^12.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"commander": "^14.0.2",
"croner": "^10.0.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"geist": "^1.7.2",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"http-proxy": "^1.18.1",
"isomorphic-dompurify": "^2.35.0",
"jsdom": "^28.1.0",
"lucide-react": "^0.554.0",
"mermaid": "^11.12.2",
"next": "^15.5.20",
"next-intl": "^4.8.2",
"next-themes": "^0.4.6",
"postcss": "^8.5.6",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"react-qr-code": "^2.0.18",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"safe-regex2": "^5.0.0",
"tailwind-merge": "^3.6.0",
"uuid": "^13.0.0",
"web-push": "^3.6.7",
"ws": "^8.18.3",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-web-links": "^0.9.0"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@tailwindcss/postcss": "^4.3.2",
"@tailwindcss/typography": "^0.5.20",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.13",
"@types/eslint": "^8.56.12",
"@types/http-proxy": "^1.17.17",
"@types/node": "20.19.35",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^10.0.0",
"@types/web-push": "^3.6.4",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/ui": "^4.1.2",
"eslint": "^8.57.0",
"eslint-config-next": "^15.5.20",
"tailwindcss": "^4.3.2",
"tsc-alias": "~1.8.16",
"tsx": "^4.20.6",
"tw-animate-css": "^1.4.0",
"typescript": "^5.5.0",
"vitest": "^4.1.2"
}
}