2
0

package.json 778 B

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