-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.27 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
{
"name": "bramhashiv",
"version": "0.4.0",
"type": "module",
"description": "Smart multi-provider coding router — plugin for OpenCode",
"author": "Abhirup Guha",
"license": "Apache-2.0",
"homepage": "https://github.com/fir3storm/bramhashiv-ai",
"repository": {
"type": "git",
"url": "git+https://github.com/fir3storm/bramhashiv-ai.git"
},
"main": "src/plugin-server.ts",
"exports": {
".": "./src/plugin-server.ts",
"./server": "./src/plugin-server.ts"
},
"files": [
"src/",
"config/",
"README.md",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"LICENSE",
"SECURITY.md"
],
"keywords": [
"opencode",
"opencode-plugin",
"ai",
"router",
"claude",
"gemini",
"openai",
"huggingface",
"openrouter",
"coding-agent"
],
"scripts": {
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "bun x tsc --noEmit"
},
"dependencies": {
"yaml": "^2.5.0",
"chokidar": "^4.0.0"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.14.0",
"@opencode-ai/sdk": ">=1.14.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.14.24",
"@opencode-ai/sdk": "^1.14.24",
"@types/bun": "latest",
"typescript": "^5.6.0"
}
}