opencode-toolbox 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +225 -0
  3. package/dist/index.js +38093 -0
  4. package/package.json +45 -0
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "opencode-toolbox",
3
+ "version": "0.2.0",
4
+ "description": "Tool Search Tool Plugin for OpenCode - search and execute tools from MCP servers on-demand",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.js",
7
+ "type": "module",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
+ }
13
+ },
14
+ "scripts": {
15
+ "build": "bun build src/index.ts --outdir dist --target bun",
16
+ "dev": "bun --hot src/index.ts",
17
+ "test": "bun test",
18
+ "test:coverage": "bun test --coverage",
19
+ "typecheck": "tsc --noEmit"
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "README.md"
24
+ ],
25
+ "keywords": [
26
+ "opencode",
27
+ "plugin",
28
+ "tool-search",
29
+ "mcp"
30
+ ],
31
+ "license": "MIT",
32
+ "devDependencies": {
33
+ "@types/bun": "latest",
34
+ "typescript": "^5.9.3"
35
+ },
36
+ "peerDependencies": {
37
+ "typescript": "^5"
38
+ },
39
+ "dependencies": {
40
+ "@modelcontextprotocol/sdk": "^1.25.1",
41
+ "@opencode-ai/plugin": "latest",
42
+ "jsonc-parser": "^3.3.1",
43
+ "zod": "^4.3.5"
44
+ }
45
+ }