-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.05 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.05 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "repobrain",
"version": "0.3.0",
"description": "Git-friendly repo memory for coding agents.",
"type": "module",
"bin": {
"brain": "dist/cli.js",
"repobrain": "dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./cli": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.js",
"default": "./dist/cli.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"examples",
"integrations",
"LICENSE",
"README.md",
"README.zh-CN.md",
".claude-plugin/plugin.json",
".claude-plugin/mcp.json",
".codex/INSTALL.md",
"scripts/setup-git-hooks.sh",
"scripts/generate-demo-proof.mjs",
"scripts/generate-proof-bundles.mjs",
"scripts/run-proof-evals.mjs",
"docs/team-workflow.md",
"docs/team-workflow.zh-CN.md",
"docs/demo-script.md",
"docs/demo-script.zh-CN.md",
"docs/demo-proof.md",
"docs/demo-proof.zh-CN.md",
"docs/evaluation.md",
"docs/evaluation.zh-CN.md",
"docs/assets",
"docs/api.md",
"docs/release-checklist.md",
"docs/release-checklist.zh-CN.md",
"docs/release-guide.md",
"docs/release-guide.zh-CN.md",
"docs/case-studies",
"docs/demo-assets"
],
"repository": {
"type": "git",
"url": "git+https://github.com/XD319/RepoBrain.git"
},
"homepage": "https://github.com/XD319/RepoBrain#readme",
"bugs": {
"url": "https://github.com/XD319/RepoBrain/issues"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ test/",
"format": "prettier --write src/ test/",
"format:check": "prettier --check src/ test/",
"smoke:package": "node scripts/smoke-package.mjs",
"demo:proof": "node scripts/generate-demo-proof.mjs",
"proof:bundles": "node scripts/generate-proof-bundles.mjs",
"eval:proof": "node scripts/run-proof-evals.mjs",
"release:verify": "npm run build && npm run typecheck && npm run lint && npm run format:check && npm test && npm run demo:proof && npm run eval:proof && npm run smoke:package && npm pack --dry-run",
"release:publish": "node scripts/publish-package.mjs",
"typecheck": "tsc --noEmit",
"mcp": "node dist/mcp/server.js"
},
"keywords": [
"agent",
"memory",
"repo",
"repo-memory",
"codex",
"claude-code",
"claude",
"typescript"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^14.0.0",
"ink": "^6.8.0",
"react": "^19.2.4",
"yaml": "^2.8.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.6.0",
"@types/react": "^19.2.14",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0",
"vitest": "^3.2.4"
}
}