-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 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
55
56
57
58
59
60
{
"name": "opencode-raven",
"version": "2.2.1",
"description": "Context-saving search and on-demand MCP routing for OpenCode through focused Raven agents.",
"main": "./index.ts",
"exports": {
".": "./index.ts"
},
"types": "./index.ts",
"files": [
"index.ts",
"Raven.md",
"RavenMcp.md",
"Raven.png",
"example.gif",
"mcp-guidance.md",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"keywords": [
"opencode",
"opencode-plugin",
"search",
"router",
"reroute",
"subagent",
"mcp",
"context7",
"exa",
"grep.app"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/evilayman/opencode-raven.git"
},
"homepage": "https://github.com/evilayman/opencode-raven#readme",
"bugs": {
"url": "https://github.com/evilayman/opencode-raven/issues"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.15.12"
},
"engines": {
"bun": ">=1.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0"
},
"devDependencies": {
"@opencode-ai/plugin": "1.15.12",
"@types/bun": "^1.3.14",
"typescript": "^7.0.2"
}
}