cloudaxe-opencode/packages/plugin/package.json

27 lines
572 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",
2025-10-21 17:31:56 +00:00
"version": "0.15.12",
2025-08-02 22:50:19 +00:00
"type": "module",
"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": {
2025-09-27 08:10:56 +00:00
".": "./src/index.ts",
"./tool": "./src/tool.ts"
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
}
2025-10-16 14:53:32 +00:00
}