package.json 1002 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "version": "1.17.20",
  4. "name": "@opencode-ai/ai",
  5. "type": "module",
  6. "license": "MIT",
  7. "scripts": {
  8. "setup:recording-env": "bun run script/setup-recording-env.ts",
  9. "test": "bun test --timeout 30000 --only-failures",
  10. "typecheck": "tsgo --noEmit",
  11. "build": "tsc -p tsconfig.build.json"
  12. },
  13. "files": [
  14. "dist"
  15. ],
  16. "exports": {
  17. ".": "./src/index.ts",
  18. "./*": "./src/*.ts"
  19. },
  20. "devDependencies": {
  21. "@clack/prompts": "1.0.0-alpha.1",
  22. "@effect/platform-node": "catalog:",
  23. "@opencode-ai/http-recorder": "workspace:*",
  24. "@tsconfig/bun": "catalog:",
  25. "@types/bun": "catalog:",
  26. "@typescript/native-preview": "catalog:",
  27. "typescript": "catalog:"
  28. },
  29. "dependencies": {
  30. "@smithy/eventstream-codec": "4.2.14",
  31. "@smithy/util-utf8": "4.2.2",
  32. "@opencode-ai/schema": "workspace:*",
  33. "aws4fetch": "1.0.20",
  34. "effect": "catalog:",
  35. "google-auth-library": "10.5.0"
  36. }
  37. }