-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.81 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.81 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
{
"name": "codebase-curator",
"version": "1.0.0",
"description": "AI-powered codebase analysis system with clean layered architecture - enables AI assistants to deeply understand and work with any codebase through MCP",
"author": "RLabs Inc. and Claude",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RLabs-Inc/codebase-curator.git"
},
"keywords": [
"codebase-analysis",
"ai-tools",
"mcp",
"claude",
"code-curator",
"developer-tools"
],
"module": "index.ts",
"type": "module",
"workspaces": [
"src/packages/*"
],
"bin": {
"codebase-curator": "./src/tools/codebase-curator/cli.ts",
"codebase-curator-mcp": "./src/mcp-servers/codebase-curator/server.ts",
"smartgrep": "./src/tools/smartgrep/cli.ts",
"curator-monitor": "./src/tools/monitor/cli.ts"
},
"exports": {
".": "./src/mcp-servers/codebase-curator/server.ts",
"./mcp": "./src/mcp-servers/codebase-curator/server.ts",
"./cli": "./src/tools/codebase-curator/cli.ts",
"./smartgrep": "./src/tools/smartgrep/cli.ts",
"./monitor": "./src/tools/monitor/cli.ts"
},
"scripts": {
"start": "bun run src/tools/curator-cli/cli.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"mcp": "bun run src/mcp-servers/codebase-curator/server.ts",
"smartgrep": "bun run src/tools/smartgrep/cli.ts",
"monitor": "bun run src/tools/monitor/cli.ts"
},
"dependencies": {
"@babel/parser": "^7.23.0",
"@babel/traverse": "^7.23.0",
"@babel/types": "^7.23.0",
"@modelcontextprotocol/sdk": "^1.0.4",
"chalk": "^5.4.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/babel__parser": "^7.1.1",
"@types/babel__traverse": "^7.20.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}