-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.23 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
{
"name": "@biroai/agentdocs-cli",
"version": "0.2.0",
"description": "Portable, structured documentation that AI agents can actually use. CLI for the AgentDocs format — brief.md + tasks.yaml + playbooks/.",
"license": "MIT",
"homepage": "https://github.com/Tim-ReJet/agentdocs-cli",
"bugs": "https://github.com/Tim-ReJet/agentdocs-cli/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/Tim-ReJet/agentdocs-cli.git"
},
"keywords": [
"agentdocs",
"ai-agents",
"ai-coding-agents",
"documentation",
"claude-code",
"cursor",
"mcp",
"cli"
],
"type": "module",
"bin": {
"agentdocs": "./dist/index.js"
},
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@biroai/agentdocs": "^0.2.0",
"commander": "^12.1.0",
"picocolors": "^1.1.1",
"yaml": "^2.6.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^24.6.0",
"tsx": "^4.21.0",
"typescript": "^5.7.3",
"vitest": "^3.2.4"
}
}