Files
opencode/packages/plugin/package.json
T
Artur Do Lago 904e8a7e10 chore: bump all packages to version 0.1.20260112
- Update agent-core and all workspace packages to 0.1.20260112
- Update tiara submodule with version bump
- Update bun.lock for version changes

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 13:09:32 +01:00

31 lines
684 B
JSON

{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/plugin",
"version": "0.1.20260112",
"type": "module",
"license": "MIT",
"scripts": {
"typecheck": "tsgo --noEmit",
"lint": "prettier --check .",
"test": "echo 'No tests configured' && exit 0",
"build": "tsc"
},
"exports": {
".": "./src/index.ts",
"./tool": "./src/tool.ts"
},
"files": [
"dist"
],
"dependencies": {
"@opencode-ai/sdk": "workspace:*",
"zod": "catalog:"
},
"devDependencies": {
"@tsconfig/node22": "catalog:",
"@types/node": "catalog:",
"typescript": "catalog:",
"@typescript/native-preview": "catalog:"
}
}