-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.81 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
{
"name": "agent-kanban-monorepo",
"version": "1.0.0",
"private": true,
"description": "Agent-first cross-project kanban board",
"scripts": {
"dev": "pnpm --filter @agent-kanban/web dev",
"build": "pnpm --filter @agent-kanban/shared build && pnpm --filter @agent-kanban/web build",
"typecheck": "tsc -p packages/shared/tsconfig.json --noEmit && tsc -p packages/cli/tsconfig.json --noEmit && tsc -p apps/web/tsconfig.json --noEmit",
"test": "vitest",
"lint": "pnpm -r --parallel run lint",
"format": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --fix .",
"skills:sync": "bash scripts/sync-skill-references.sh",
"skills:check": "bash scripts/sync-skill-references.sh --check",
"prepare": "lefthook install",
"install:cli": "bash scripts/install-cli.sh"
},
"keywords": [
"kanban",
"agent",
"ai",
"cli"
],
"author": "saltbo",
"license": "FSL-1.1-ALv2",
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@playwright/test": "^1.59.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/dompurify": "^3.2.0",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^3.2.4",
"concurrently": "^9.2.1",
"jose": "^6.2.2",
"jsdom": "^29.0.2",
"lefthook": "^2.1.5",
"miniflare": "^4.20260430.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-language-server": "^5.3.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@agent-kanban/shared": "workspace:*",
"@agentclientprotocol/sdk": "^0.19.0",
"@anthropic-ai/claude-agent-sdk": "^0.2.96",
"@assistant-ui/react": "^0.12.24",
"@openai/codex-sdk": "^0.118.0",
"dompurify": "^3.3.3",
"framer-motion": "^12.38.0",
"openpgp": "^6.3.0"
}
}