-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.26 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.26 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
{
"name": "commandmate",
"version": "0.5.5",
"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"
},
"files": [
"bin/",
"dist/",
".next/",
"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": "next lint",
"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",
"ansi-to-html": "^0.7.2",
"autoprefixer": "^10.4.22",
"better-sqlite3": "^12.4.1",
"commander": "^14.0.2",
"croner": "^10.0.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"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": "^14.2.35",
"next-intl": "^4.8.2",
"next-themes": "^0.4.6",
"postcss": "^8.5.6",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"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",
"remark-gfm": "^4.0.1",
"safe-regex2": "^5.0.0",
"uuid": "^13.0.0",
"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/typography": "^0.5.19",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.13",
"@types/http-proxy": "^1.17.17",
"@types/node": "20.19.35",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@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": "^14.2.35",
"tailwindcss": "^3.4.18",
"tsc-alias": "~1.8.16",
"tsx": "^4.20.6",
"typescript": "^5.5.0",
"vitest": "^4.1.2"
}
}