-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.3 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
{
"name": "parallel-cc",
"version": "2.0.0",
"description": "Coordinate parallel Claude Code sessions using git worktrees and E2B cloud sandboxes for autonomous execution",
"type": "module",
"bin": {
"parallel-cc": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"lint": "eslint src/",
"test": "vitest",
"test:e2b": "E2B_REQUIRED=true vitest tests/e2b/ --run",
"test:all": "E2B_REQUIRED=true vitest --run",
"test:coverage": "vitest --run --coverage"
},
"dependencies": {
"@babel/parser": "^7.28.5",
"@babel/traverse": "^7.28.5",
"@babel/types": "^7.28.5",
"@modelcontextprotocol/sdk": "^1.23.0",
"better-sqlite3": "^11.7.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"e2b": "^1.13.2",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/babel__parser": "^7.0.0",
"@types/babel__traverse": "^7.28.0",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^2.1.9",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"git",
"worktree",
"claude",
"parallel",
"mcp"
],
"author": "Frank Bria",
"license": "MIT"
}