package.json 860 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/sdk",
  4. "version": "1.4.6",
  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/cross-spawn": "catalog:",
  27. "@types/node": "catalog:",
  28. "@typescript/native-preview": "catalog:",
  29. "typescript": "catalog:"
  30. },
  31. "dependencies": {
  32. "cross-spawn": "catalog:"
  33. }
  34. }