package.json 894 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/sdk",
  4. "version": "1.18.4",
  5. "type": "module",
  6. "license": "MIT",
  7. "scripts": {
  8. "test": "bun test",
  9. "typecheck": "tsgo --noEmit"
  10. },
  11. "exports": {
  12. ".": "./src/index.ts",
  13. "./client": "./src/client.ts",
  14. "./server": "./src/server.ts",
  15. "./v2": "./src/v2/index.ts",
  16. "./v2/client": "./src/v2/client.ts",
  17. "./v2/gen/client": "./src/v2/gen/client/index.ts",
  18. "./v2/server": "./src/v2/server.ts",
  19. "./v2/types": "./src/v2/gen/types.gen.ts"
  20. },
  21. "files": [
  22. "dist"
  23. ],
  24. "devDependencies": {
  25. "@hey-api/openapi-ts": "0.90.10",
  26. "@tsconfig/node22": "catalog:",
  27. "@types/cross-spawn": "catalog:",
  28. "@types/node": "catalog:",
  29. "@typescript/native-preview": "catalog:",
  30. "typescript": "catalog:"
  31. },
  32. "dependencies": {
  33. "cross-spawn": "catalog:"
  34. }
  35. }