-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1 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
{
"name": "vectis-cli",
"version": "0.1.0",
"description": "AI-driven design engineering CLI for Penpot",
"type": "module",
"bin": {
"vectis": "./dist/index.js"
},
"scripts": {
"dev": "bun run src/index.ts",
"vectis": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "tsc --noEmit --skipLibCheck 2>&1 | grep -v node_modules || true"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@modelcontextprotocol/sdk": "^1.8.0",
"cli-table3": "^0.6.5",
"gray-matter": "^4.0.3",
"open": "^10.1.0",
"ora": "^8.1.1",
"picocolors": "^1.1.1",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.12.0",
"@vitest/coverage-v8": "^3.0.0",
"bun-types": "^1.2.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18",
"bun": ">=1.0"
},
"license": "MIT"
}