opencode_offline/packages/plugin/package.json

29 lines
592 B
JSON
Raw Normal View History

2025-08-03 06:50:19 +08:00
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/plugin",
2026-03-13 07:34:11 +08:00
"version": "1.2.25",
2025-08-03 06:50:19 +08:00
"type": "module",
"license": "MIT",
2025-08-03 06:50:19 +08:00
"scripts": {
2025-10-15 06:30:32 +08:00
"typecheck": "tsgo --noEmit",
2025-09-19 18:10:27 +08:00
"build": "tsc"
2025-08-03 06:50:19 +08:00
},
"exports": {
".": "./src/index.ts",
"./tool": "./src/tool.ts"
2025-08-03 06:50:19 +08:00
},
"files": [
"dist"
],
2025-08-05 09:12:18 +08:00
"dependencies": {
2025-09-18 15:58:21 +08:00
"@opencode-ai/sdk": "workspace:*",
"zod": "catalog:"
2025-08-05 09:12:18 +08:00
},
2025-08-03 06:50:19 +08:00
"devDependencies": {
2025-08-24 00:10:08 +08:00
"@tsconfig/node22": "catalog:",
"@types/node": "catalog:",
2025-10-15 06:30:32 +08:00
"typescript": "catalog:",
"@typescript/native-preview": "catalog:"
2025-08-03 06:50:19 +08:00
}
2026-01-29 15:10:34 +08:00
}