-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.83 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.83 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
{
"name": "@gpriday/canopy",
"version": "0.1.0",
"description": "Worktree context dashboard for developers working with AI agents",
"type": "module",
"main": "./dist/index.js",
"bin": {
"canopy": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod +x dist/cli.js && npm run copy-themes",
"copy-themes": "mkdir -p dist/theme/bundled && cp src/theme/bundled/*.json dist/theme/bundled/",
"dev": "tsc --watch",
"start": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"keywords": [
"terminal",
"cli",
"worktree",
"dashboard",
"tree",
"ink",
"copytree",
"ai",
"developer-tools"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20.19.0"
},
"dependencies": {
"@m234/nerd-fonts": "^0.4.0",
"clipboardy": "^5.0.0",
"cosmiconfig": "^9.0.0",
"execa": "^9.6.0",
"fs-extra": "^11.3.2",
"globby": "^16.0.0",
"ink": "^6.5.0",
"ink-gradient": "^3.0.0",
"ink-link": "^5.0.0",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"minimatch": "^10.1.1",
"open": "^11.0.0",
"openai": "^6.9.1",
"react": "^19.2.0",
"simple-git": "^3.30.0",
"supports-hyperlinks": "^4.3.0",
"terminal-size": "^4.0.0"
},
"devDependencies": {
"@testing-library/react": "^16.3.0",
"@types/fs-extra": "^11.0.4",
"@types/ink-testing-library": "^1.0.4",
"@types/node": "^24.10.1",
"@types/react": "^19.2.6",
"@vitest/coverage-v8": "^4.0.10",
"@vitest/ui": "^4.0.10",
"ink-testing-library": "^4.0.0",
"jsdom": "^27.2.0",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"vitest": "^4.0.10"
}
}