package.json 760 B

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