package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "version": "1.18.4",
  4. "name": "@opencode-ai/http-recorder",
  5. "description": "Record and replay Effect HTTP and WebSocket traffic with deterministic cassettes",
  6. "type": "module",
  7. "license": "MIT",
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/anomalyco/opencode.git",
  11. "directory": "packages/http-recorder"
  12. },
  13. "homepage": "https://github.com/anomalyco/opencode/tree/dev/packages/http-recorder",
  14. "bugs": "https://github.com/anomalyco/opencode/issues",
  15. "keywords": [
  16. "effect",
  17. "http",
  18. "recording",
  19. "replay",
  20. "testing",
  21. "vcr"
  22. ],
  23. "engines": {
  24. "node": ">=22"
  25. },
  26. "publishConfig": {
  27. "access": "public"
  28. },
  29. "scripts": {
  30. "test": "bun test --timeout 30000 --only-failures",
  31. "typecheck": "tsgo --noEmit && tsgo -p test/tsconfig.json --noEmit",
  32. "build": "bun ./script/build.ts",
  33. "verify:package": "bun ./script/verify-package.ts"
  34. },
  35. "exports": {
  36. ".": "./src/index.ts"
  37. },
  38. "sideEffects": false,
  39. "files": [
  40. "dist",
  41. "README.md",
  42. "CHANGELOG.md",
  43. "LICENSE"
  44. ],
  45. "devDependencies": {
  46. "@tsconfig/node22": "catalog:",
  47. "@types/bun": "catalog:",
  48. "@types/node": "catalog:",
  49. "@typescript/native-preview": "catalog:",
  50. "@effect/platform-node": "catalog:",
  51. "effect": "catalog:",
  52. "typescript": "catalog:"
  53. },
  54. "dependencies": {
  55. "@effect/platform-node-shared": "4.0.0-beta.101"
  56. },
  57. "peerDependencies": {
  58. "effect": "catalog:"
  59. }
  60. }