-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 750 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 750 Bytes
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
{
"name": "agentgit",
"version": "0.1.1",
"description": "Visualize Claude Code agent sessions as a live 3D force-directed graph",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/omavashia2005/agentgit"
},
"type": "module",
"files": [
"src/",
"public/"
],
"bin": {
"agentgit": "src/index.ts"
},
"scripts": {
"dev": "bun --hot src/index.ts",
"start": "bun src/index.ts"
},
"dependencies": {
"agentgit": "^0.1.1",
"chokidar": "^4",
"commander": "^13",
"ink": "^6",
"ink-spinner": "^5",
"react": "^19",
"react-dom": "^19"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19",
"@types/react-dom": "^19"
}
}