package.json 789 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/sdk",
  4. "version": "1.3.2",
  5. "type": "module",
  6. "license": "MIT",
  7. "scripts": {
  8. "typecheck": "tsgo --noEmit",
  9. "build": "bun ./script/build.ts"
  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. },
  20. "files": [
  21. "dist"
  22. ],
  23. "devDependencies": {
  24. "@hey-api/openapi-ts": "0.90.10",
  25. "@tsconfig/node22": "catalog:",
  26. "@types/node": "catalog:",
  27. "typescript": "catalog:",
  28. "@typescript/native-preview": "catalog:"
  29. },
  30. "dependencies": {}
  31. }