-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.05 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
{
"name": "capa",
"version": "1.0.0",
"description": "An agentic skills and tools package manager",
"type": "module",
"bin": {
"capa": "./dist/cli.js"
},
"scripts": {
"dev": "bun run src/cli/index.ts",
"build:web": "bun run scripts/build-web.ts",
"prebuild": "bun run scripts/generate-version.ts && bun run scripts/build-web.ts",
"build": "bun build src/cli/index.ts --compile --outfile dist/capa --icon logo.ico",
"build:win": "bun build src/cli/index.ts --compile --windows-icon=./logo.ico --outfile dist/capa --icon logo.ico",
"preserver": "bun run build:web",
"server": "bun run src/server/index.ts",
"test": "bun test",
"test:coverage": "bun test --coverage"
},
"dependencies": {
"@clack/prompts": "^1.4.0",
"@iarna/toml": "^2.2.5",
"@modelcontextprotocol/sdk": "^1.0.4",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.100.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commander": "^15.0.0",
"dompurify": "^3.4.3",
"highlight.js": "^11.11.1",
"i18next": "^26.0.10",
"js-yaml": "^5.0.0",
"listr2": "^10.2.1",
"lucide-react": "^1.14.0",
"marked": "^18.0.3",
"nanoid": "^5.0.8",
"picocolors": "^1.1.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-i18next": "^17.0.7",
"react-icons": "^5.6.0",
"react-router-dom": "^7.15.0",
"tailwind-merge": "^3.5.0",
"xdg-basedir": "^5.1.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@tailwindcss/cli": "^4.2.4",
"@types/bun": "latest",
"@types/dompurify": "^3.0.5",
"@types/node": "^26.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"tailwindcss": "^4.2.4"
}
}