Files
opencode/packages/sdk/js/package.json
T
Dax Raad 02848a350c feat: add opentui interface for opencode
- Add comprehensive TUI interface with React Ink components
- Implement session management, model selection, and command dialogs
- Add theme system with customizable colors and styling
- Integrate with existing opencode server and SDK
- Add todo management and file browsing capabilities
- Include proper TypeScript support and error handling
2025-09-19 17:21:04 -04:00

38 lines
809 B
JSON

{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/sdk",
"version": "0.10.2",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc"
},
"exports": {
".": {
"development": "./src/index.ts",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./client": {
"development": "./src/client.ts",
"import": "./dist/client.js",
"types": "./dist/client.d.ts"
},
"./server": {
"development": "./src/server.ts",
"import": "./dist/server.js",
"types": "./dist/server.d.ts"
}
},
"files": [
"dist"
],
"devDependencies": {
"typescript": "catalog:",
"@tsconfig/node22": "catalog:"
},
"dependencies": {
"@hey-api/openapi-ts": "0.82.5"
}
}