-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.25 KB
/
package.json
File metadata and controls
58 lines (58 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
58
{
"name": "treeai",
"version": "0.3.0",
"description": "TreeAI CLI - Git worktree automation for Claude & Codex multi-task workflows",
"type": "module",
"bin": {
"treeai": "dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"git",
"worktree",
"cli",
"ai",
"claude",
"codex",
"workflow",
"productivity"
],
"author": "leecj",
"license": "MIT",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc --project tsconfig.json",
"prepublishOnly": "npm run build",
"release": "npm run build && npm publish"
},
"dependencies": {
"@inquirer/prompts": "^5.2.0",
"chalk": "^5.6.2",
"commander": "^12.1.0",
"debug": "^4.4.3",
"fs-extra": "^11.3.2",
"nanoid": "^5.1.6",
"simple-git": "^3.28.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.18.8",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leecj/treeai_cli.git"
},
"bugs": {
"url": "https://github.com/leecj/treeai_cli/issues"
},
"homepage": "https://github.com/leecj/treeai_cli#readme",
"packageManager": "[email protected]"
}