package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 && tsgo --noEmit -p tsconfig.types.json",
  11. "build": "tsc -p tsconfig.build.json"
  12. },
  13. "files": [
  14. "dist"
  15. ],
  16. "exports": {
  17. ".": "./src/index.ts",
  18. "./testing": "./src/testing.ts",
  19. "./*": "./src/*.ts"
  20. },
  21. "devDependencies": {
  22. "@clack/prompts": "1.0.0-alpha.1",
  23. "@effect/platform-node": "catalog:",
  24. "@opencode-ai/http-recorder": "workspace:*",
  25. "@tsconfig/bun": "catalog:",
  26. "@types/bun": "catalog:",
  27. "@typescript/native-preview": "catalog:",
  28. "typescript": "catalog:"
  29. },
  30. "dependencies": {
  31. "@smithy/eventstream-codec": "4.2.14",
  32. "@smithy/util-utf8": "4.2.2",
  33. "@opencode-ai/schema": "workspace:*",
  34. "aws4fetch": "1.0.20",
  35. "effect": "catalog:",
  36. "google-auth-library": "10.5.0"
  37. }
  38. }