package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "version": "0.0.0",
  4. "name": "@opencode-ai/http-recorder",
  5. "description": "Record and replay Effect HTTP client 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",
  31. "test:ci": "mkdir -p .artifacts/unit && bun test --timeout 30000 --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml",
  32. "typecheck": "tsgo --noEmit",
  33. "build": "bun ./script/build.ts",
  34. "verify:package": "bun ./script/verify-package.ts"
  35. },
  36. "exports": {
  37. ".": "./src/index.ts",
  38. "./internal": "./src/internal.ts"
  39. },
  40. "files": [
  41. "dist",
  42. "README.md",
  43. "CHANGELOG.md",
  44. "LICENSE"
  45. ],
  46. "devDependencies": {
  47. "@tsconfig/node22": "catalog:",
  48. "@types/bun": "catalog:",
  49. "@types/node": "catalog:",
  50. "@typescript/native-preview": "catalog:",
  51. "effect": "catalog:",
  52. "typescript": "catalog:"
  53. },
  54. "dependencies": {
  55. "@effect/platform-node": "4.0.0-beta.74",
  56. "@effect/platform-node-shared": "4.0.0-beta.74"
  57. },
  58. "peerDependencies": {
  59. "effect": "4.0.0-beta.74"
  60. }
  61. }