-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 4.35 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 4.35 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "agentpulse",
"version": "0.5.0",
"description": "Command center for AI coding agents across all your machines",
"type": "module",
"workspaces": ["packages/*"],
"bin": {
"agentpulse": "./bin/cli.ts"
},
"scripts": {
"dev": "concurrently \"bun run dev:server\" \"bun run dev:web\"",
"dev:server": "bun --watch src/server/index.ts",
"dev:web": "vite",
"dev:supervisor": "bun --watch src/supervisor/index.ts",
"prototype:codex-managed": "bun scripts/codex-managed-prototype.ts",
"build": "vite build && bun run build:server",
"build:server": "bun build src/server/index.ts --outdir dist/server --target bun",
"build:mcp": "bun run --cwd packages/agentpulse-mcp build",
"supervisor": "bun src/supervisor/index.ts",
"start": "NODE_ENV=production bun dist/server/index.js",
"db:generate": "scripts/db-generate.sh",
"db:generate:sqlite": "node --require ./scripts/drizzle-hook.cjs ./node_modules/drizzle-kit/bin.cjs generate --config drizzle.config.sqlite.ts",
"db:generate:postgres": "node --require ./scripts/drizzle-hook.cjs ./node_modules/drizzle-kit/bin.cjs generate --config drizzle.config.postgres.ts",
"db:migrate:sqlite": "drizzle-kit migrate --config drizzle.config.sqlite.ts",
"db:migrate:postgres": "drizzle-kit migrate --config drizzle.config.postgres.ts",
"db:push:sqlite": "drizzle-kit push --config drizzle.config.sqlite.ts",
"db:push:postgres": "drizzle-kit push --config drizzle.config.postgres.ts",
"db:studio:sqlite": "drizzle-kit studio --config drizzle.config.sqlite.ts",
"db:studio:postgres": "drizzle-kit studio --config drizzle.config.postgres.ts",
"check": "biome check .",
"check:fix": "biome check --write .",
"typecheck": "tsc --noEmit && tsc -p packages/agentpulse-mcp/tsconfig.json --noEmit",
"test": "bun test",
"test:watch": "bun test --watch",
"check:no-raw-fetch": "bash scripts/check-no-raw-fetch.sh",
"check:no-sync-transcript-io": "bash scripts/check-no-sync-transcript-io.sh",
"check:installers": "bash -n scripts/install-local.sh && bun scripts/check-installers.ts",
"check:no-bun-sqlite-only-apis": "bun scripts/check-no-bun-sqlite-only-apis.ts",
"check:no-legacy-schema-import": "bun scripts/check-no-legacy-schema-import.ts",
"check:no-authentik-literals": "bun scripts/check-no-authentik-literals.ts",
"check:hook-event-parity": "bun scripts/check-hook-event-parity.ts",
"check:no-console-log-mcp": "bun scripts/check-no-console-log-mcp.ts",
"check:mcp-no-raw-register-tool": "bun scripts/check-mcp-no-raw-register-tool.ts",
"check:mcp-no-cross-boundary-import": "bun scripts/check-mcp-no-cross-boundary-import.ts",
"check:mcp-tarball": "bun scripts/check-mcp-tarball.ts",
"check:architecture": "bun run check:no-raw-fetch && bun run check:no-sync-transcript-io && bun run check:installers && bun run check:no-bun-sqlite-only-apis && bun run check:no-legacy-schema-import && bun run check:no-authentik-literals && bun run check:hook-event-parity && bun run check:no-console-log-mcp && bun run check:mcp-no-raw-register-tool && bun run check:mcp-no-cross-boundary-import"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.3.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@types/qrcode": "^1.5.6",
"@uiw/react-codemirror": "^4.23.0",
"better-sqlite3": "^11.8.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"codemirror": "^6.0.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.44.0",
"hono": "~4.7.0",
"lucide-react": "^0.473.0",
"postgres": "^3.4.5",
"qrcode": "^1.5.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "~10.1.0",
"react-router-dom": "^7.5.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.0.0",
"zod": "^3.25.76",
"zustand": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/better-sqlite3": "^7.6.12",
"@types/bun": "^1.2.0",
"@types/node": "^22.0.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.4.0",
"autoprefixer": "^10.4.21",
"concurrently": "^9.1.0",
"drizzle-kit": "^0.30.0",
"postcss": "^8.5.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.8.0",
"vite": "^6.3.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jstuart0/agentpulse"
},
"keywords": ["ai", "agent", "monitoring", "dashboard", "claude-code", "codex", "developer-tools"],
"trustedDependencies": ["@biomejs/biome"]
}