-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.84 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
{
"name": "claude-research-team",
"version": "1.0.0",
"description": "Autonomous research agents for Claude Code - passively research and inject helpful context",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"claude-research-team": "./dist/cli.js"
},
"scripts": {
"build": "bun run tsc && bun run build:hooks",
"build:hooks": "bun scripts/build-hooks.js",
"dev": "tsc --watch",
"start": "bun dist/service/server.js",
"service:start": "bun dist/service/server.js",
"service:status": "curl -s http://localhost:3200/api/status || echo 'Service not running'",
"service:logs": "tail -f ~/.claude-research-team/logs/service.log",
"test": "bun test",
"lint": "eslint src/",
"clean": "rm -rf dist/"
},
"keywords": [
"claude",
"claude-code",
"research",
"ai",
"agents",
"mcp",
"passive-research",
"context-injection"
],
"author": "bigphoot",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/bigph00t/claude-research-team"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
"@chroma-core/default-embed": "^0.1.9",
"@modelcontextprotocol/sdk": "^1.25.1",
"chromadb": "^3.1.8",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"ws": "^8.16.0"
},
"optionalDependencies": {
"better-sqlite3": "^11.10.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.5",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"esbuild": "^0.20.0",
"eslint": "^8.55.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
}
}