package.json 603 B

12345678910111213141516171819202122232425
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/sdk-next",
  4. "private": true,
  5. "type": "module",
  6. "license": "MIT",
  7. "exports": {
  8. ".": "./src/index.ts"
  9. },
  10. "scripts": {
  11. "test": "bun test --timeout 5000",
  12. "typecheck": "tsgo --noEmit"
  13. },
  14. "dependencies": {
  15. "@opencode-ai/client": "workspace:*",
  16. "@opencode-ai/core": "workspace:*",
  17. "@opencode-ai/server": "workspace:*",
  18. "effect": "catalog:"
  19. },
  20. "devDependencies": {
  21. "@tsconfig/bun": "catalog:",
  22. "@types/bun": "catalog:",
  23. "@typescript/native-preview": "catalog:"
  24. }
  25. }