-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 946 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 946 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
{
"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",
"prebuild": "bun run scripts/generate-version.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",
"server": "bun run src/server/index.ts",
"test": "bun test",
"test:coverage": "bun test --coverage"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"commander": "^12.1.0",
"js-yaml": "^4.1.0",
"nanoid": "^5.0.8",
"skills": "github:vercel-labs/skills#v1.3.7",
"xdg-basedir": "^5.1.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2"
}
}