mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-24 19:24:22 +01:00
32 lines
621 B
JSON
32 lines
621 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@opencode-ai/plugin",
|
|
"version": "0.11.3",
|
|
"type": "module",
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "tsc"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"development": "./src/index.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./tool": {
|
|
"development": "./src/tool.ts",
|
|
"import": "./dist/tool.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"dependencies": {
|
|
"@opencode-ai/sdk": "workspace:*",
|
|
"zod": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node22": "catalog:",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|