-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.25 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.25 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
{
"name": "worktree-compose",
"version": "0.1.4",
"description": "Zero-config Docker Compose isolation for git worktrees",
"type": "module",
"bin": {
"worktree-compose": "./dist/cli.js",
"wtc": "./dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"git",
"worktree",
"docker",
"compose",
"isolation",
"parallel",
"development",
"mcp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LevwTech/worktree-compose.git"
},
"bugs": {
"url": "https://github.com/LevwTech/worktree-compose/issues"
},
"homepage": "https://github.com/LevwTech/worktree-compose#readme",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^14.0.0",
"yaml": "^2.8.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.15.21",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}