cloudaxe-opencode/packages/plugin/package.json

55 lines
1.3 KiB
JSON
Raw Normal View History

2025-08-02 22:50:19 +00:00
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/plugin",
2026-07-16 15:34:31 +00:00
"version": "1.18.3",
2025-08-02 22:50:19 +00:00
"type": "module",
"license": "MIT",
2025-08-02 22:50:19 +00:00
"scripts": {
2025-10-14 22:30:32 +00:00
"typecheck": "tsgo --noEmit",
2025-09-19 10:10:27 +00:00
"build": "tsc"
2025-08-02 22:50:19 +00:00
},
"exports": {
".": "./src/index.ts",
2026-03-27 14:00:26 +00:00
"./tool": "./src/tool.ts",
"./tui": "./src/tui.ts",
"./v2/effect": "./src/v2/effect/index.ts",
"./v2/effect/integration": "./src/v2/effect/integration.ts",
"./v2/effect/plugin": "./src/v2/effect/plugin.ts",
"./v2/promise": "./src/v2/promise/index.ts"
2025-08-02 22:50:19 +00:00
},
"files": [
"dist"
],
2025-08-05 01:12:18 +00:00
"dependencies": {
"@ai-sdk/provider": "3.0.8",
2025-09-18 07:58:21 +00:00
"@opencode-ai/sdk": "workspace:*",
"effect": "catalog:",
2025-09-18 07:58:21 +00:00
"zod": "catalog:"
2025-08-05 01:12:18 +00:00
},
2026-03-27 14:00:26 +00:00
"peerDependencies": {
"@opentui/core": ">=0.4.3",
"@opentui/keymap": ">=0.4.3",
"@opentui/solid": ">=0.4.3"
2026-03-27 14:00:26 +00:00
},
"peerDependenciesMeta": {
"@opentui/core": {
"optional": true
},
"@opentui/keymap": {
"optional": true
},
2026-03-27 14:00:26 +00:00
"@opentui/solid": {
"optional": true
}
},
2025-08-02 22:50:19 +00:00
"devDependencies": {
"@opentui/core": "catalog:",
"@opentui/keymap": "catalog:",
"@opentui/solid": "catalog:",
2025-08-23 16:10:08 +00:00
"@tsconfig/node22": "catalog:",
"@types/node": "catalog:",
2025-10-14 22:30:32 +00:00
"typescript": "catalog:",
"@typescript/native-preview": "catalog:"
2025-08-02 22:50:19 +00:00
}
2026-01-29 07:10:34 +00:00
}