sidekick-agent-hub 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +54 -0
- package/dist/sidekick-cli.mjs +51232 -0
- package/package.json +59 -0
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sidekick-agent-hub",
|
|
3
|
+
"version": "0.12.0",
|
|
4
|
+
"description": "Terminal dashboard for monitoring AI coding agent sessions",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"sidekick": "./dist/sidekick-cli.mjs"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/sidekick-cli.mjs"
|
|
11
|
+
],
|
|
12
|
+
"engines": {
|
|
13
|
+
"node": ">=20.0.0"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/cesarandreslopez/sidekick-agent-hub"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://cesarandreslopez.github.io/sidekick-agent-hub/",
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/cesarandreslopez/sidekick-agent-hub/issues"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"cli",
|
|
25
|
+
"ai-coding-assistant",
|
|
26
|
+
"claude-code",
|
|
27
|
+
"opencode",
|
|
28
|
+
"codex-cli",
|
|
29
|
+
"session-monitor",
|
|
30
|
+
"agent-hub"
|
|
31
|
+
],
|
|
32
|
+
"author": {
|
|
33
|
+
"name": "Cesar Andres Lopez",
|
|
34
|
+
"email": "cesarandreslopez@gmail.com"
|
|
35
|
+
},
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "node esbuild.cjs",
|
|
41
|
+
"build:sea": "node esbuild-sea.cjs",
|
|
42
|
+
"clean": "rm -rf dist",
|
|
43
|
+
"test": "vitest run",
|
|
44
|
+
"test:watch": "vitest",
|
|
45
|
+
"prepublishOnly": "npm run build"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/node": "^22.0.0",
|
|
49
|
+
"@types/react": "^19.2.14",
|
|
50
|
+
"commander": "^13.0.0",
|
|
51
|
+
"esbuild": "^0.24.0",
|
|
52
|
+
"ink": "^6.8.0",
|
|
53
|
+
"react": "^19.2.4",
|
|
54
|
+
"sidekick-shared": "file:../sidekick-shared",
|
|
55
|
+
"typescript": "^5.7.0",
|
|
56
|
+
"vitest": "^4.0.18"
|
|
57
|
+
},
|
|
58
|
+
"license": "MIT"
|
|
59
|
+
}
|