cloudaxe-opencode/packages/plugin/package.json

35 lines
713 B
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-01-31 13:48:22 +00:00
"version": "1.1.48",
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": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./tool": {
"types": "./dist/tool.d.ts",
"import": "./dist/tool.js"
}
2025-08-02 22:50:19 +00:00
},
"files": [
"dist"
],
2025-08-05 01:12:18 +00:00
"dependencies": {
2025-09-18 07:58:21 +00:00
"@opencode-ai/sdk": "workspace:*",
"zod": "catalog:"
2025-08-05 01:12:18 +00:00
},
2025-08-02 22:50:19 +00:00
"devDependencies": {
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
}