-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.65 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
{
"name": "opencode-mcp-triage",
"version": "0.9.0",
"description": "On-demand MCP tool activation for OpenCode — saves ~80% tokens by shrinking MCP tool descriptions and routing via keyword matching",
"license": "MIT",
"author": "Carlos Spagnoletti",
"keywords": [
"opencode",
"opencode-plugin",
"mcp",
"triage",
"router",
"token-optimization",
"ai-coding-agent"
],
"type": "module",
"main": "src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.d.ts"
},
"./package.json": "./package.json"
},
"bin": {
"opencode-mcp-triage": "bin/cli.js"
},
"files": [
"src/",
"bin/",
".opencode/commands/",
".opencode/plugins/",
"postinstall.cjs",
"README.md"
],
"scripts": {
"check": "tsc --noEmit",
"build": "tsc -p tsconfig.cli.json",
"test": "vitest run",
"test:watch": "vitest",
"postinstall": "node postinstall.cjs"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.14.0"
},
"peerDependenciesMeta": {
"@opencode-ai/plugin": {
"optional": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/cascharly/opencode-mcp-triage.git"
},
"devDependencies": {
"@opencode-ai/plugin": ">=1.14.0",
"@types/node": "25.7.0",
"typescript": "6.0.3",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"directories": {
"test": "test"
},
"bugs": {
"url": "https://github.com/cascharly/opencode-mcp-triage/issues"
},
"homepage": "https://github.com/cascharly/opencode-mcp-triage#readme"
}