-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.49 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
{
"name": "treehouse-worktree",
"version": "1.1.0",
"description": "Git worktree manager for parallel AI agent workflows with MCP support",
"type": "module",
"main": "dist/index.js",
"bin": {
"treehouse": "dist/cli.js",
"treehouse-mcp": "dist/mcp-server.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"git",
"worktree",
"cli",
"mcp",
"ai-agents",
"cursor"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mark-hingston/treehouse-worktree.git"
},
"bugs": {
"url": "https://github.com/mark-hingston/treehouse-worktree/issues"
},
"homepage": "https://github.com/mark-hingston/treehouse-worktree#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"get-folder-size": "^5.0.0"
},
"devDependencies": {
"@types/get-folder-size": "^3.0.4",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@vitest/coverage-v8": "^4.0.15",
"@vitest/ui": "^4.0.15",
"eslint": "^9.39.1",
"typescript": "^5.3.0",
"vitest": "^4.0.15"
}
}