| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "$schema": "https://json.schemastore.org/package.json",
- "name": "@opencode-ai/plugin",
- "version": "1.4.3",
- "type": "module",
- "license": "MIT",
- "scripts": {
- "typecheck": "tsgo --noEmit",
- "build": "tsc"
- },
- "exports": {
- ".": "./src/index.ts",
- "./tool": "./src/tool.ts",
- "./tui": "./src/tui.ts"
- },
- "files": [
- "dist"
- ],
- "dependencies": {
- "@opencode-ai/sdk": "workspace:*",
- "effect": "catalog:",
- "zod": "catalog:"
- },
- "peerDependencies": {
- "@opentui/core": ">=0.1.99",
- "@opentui/solid": ">=0.1.99"
- },
- "peerDependenciesMeta": {
- "@opentui/core": {
- "optional": true
- },
- "@opentui/solid": {
- "optional": true
- }
- },
- "devDependencies": {
- "@opentui/core": "0.1.99",
- "@opentui/solid": "0.1.99",
- "@tsconfig/node22": "catalog:",
- "@types/node": "catalog:",
- "typescript": "catalog:",
- "@typescript/native-preview": "catalog:"
- }
- }
|