-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 822 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 822 Bytes
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
{
"name": "opencode-mcp-installer",
"version": "0.1.0",
"description": "OpenCode TUI plugin that searches and installs MCP servers from the official registry",
"private": true,
"type": "module",
"exports": {
".": {
"import": "./dist/tui.js",
"types": "./dist/tui.d.ts"
},
"./tui": {
"import": "./dist/tui.js",
"types": "./dist/tui.d.ts"
}
},
"scripts": {
"build": "bun run scripts/build.mjs && tsc --emitDeclarationOnly",
"typecheck": "tsc --noEmit",
"fetch-snapshot": "bun run scripts/fetch-snapshot.mjs"
},
"dependencies": {
"@opencode-ai/plugin": "^1.14.50",
"@opentui/core": "^0.1.105",
"@opentui/solid": "^0.1.105",
"jsonc-parser": "^3.3.1",
"solid-js": "^1.9.11"
},
"devDependencies": {
"typescript": "^5.8.2"
}
}