-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.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
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
66
67
{
"name": "project-brain",
"version": "0.2.4",
"description": "Autonomous project analysis engine that builds context, memory, and agent-driven reports for any software repository.",
"bin": {
"project-brain": "dist/cli/project-brain.js",
"brain": "dist/cli/project-brain.js"
},
"scripts": {
"lint": "eslint .",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"verify:quick": "npm run lint && npm run typecheck && npm run build",
"verify": "npm run verify:quick && npm run test && npm run test:smoke",
"security:repo": "node scripts/check-repo-safety.mjs --all",
"security:audit": "npm audit --omit=dev --audit-level=high",
"review:exports": "node scripts/unused-exports-review.mjs",
"hooks:install": "node scripts/install-hooks.mjs",
"prepare": "node scripts/install-hooks.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:smoke": "vitest run tests/smoke",
"analyze": "npm run build && node dist/cli/project-brain.js analyze . --output ./sample-output/self-analysis",
"weekly": "npm run build && node dist/cli/project-brain.js weekly . --output ./sample-output/self-analysis",
"report": "npm run build && node dist/cli/project-brain.js report . --output ./sample-output/self-analysis",
"prepack": "npm run build"
},
"keywords": [
"agents",
"autonomous-systems",
"code-analysis",
"context-engineering",
"developer-tools"
],
"author": "",
"license": "MIT",
"dependencies": {
"@langchain/ollama": "^1.2.6",
"commander": "^14.0.1",
"deepagents": "^1.8.4",
"langchain": "^1.2.35",
"typescript": "^5.9.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^20.19.0",
"@typescript-eslint/parser": "^8.57.0",
"dependency-cruiser": "^17.3.8",
"eslint": "^10.0.3",
"ts-node": "^10.9.2",
"ts-prune": "^0.10.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"README.md",
"docs",
"prompts",
"reports/templates",
"AI_REVIEW_START_HERE.md",
"schemas",
"CHANGELOG.md"
]
}