-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 829 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 829 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
{
"name": "visionlog.md",
"version": "0.1.0",
"description": "Vision, goals, ADRs, guardrails, SOPs — the governance layer for AI-assisted projects",
"type": "module",
"bin": {
"visionlog": "./dist/visionlog"
},
"scripts": {
"dev": "bun src/cli.ts",
"build": "bun build --production --compile --minify --outfile=dist/visionlog src/cli.ts",
"mcp": "bun src/cli.ts mcp start",
"test": "bun test",
"check:types": "node --max-old-space-size=8192 node_modules/typescript/bin/tsc --noEmit",
"check": "bunx biome check .",
"check:fix": "bunx biome check --write ."
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"commander": "^12.0.0",
"gray-matter": "^4.0.3",
"zod": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"typescript": "^5.0.0"
}
}