feat(http-recorder): prepare public beta release (#31018)

This commit is contained in:
Kit Langton
2026-06-06 03:01:26 +00:00
committed by GitHub
parent ba57718b05
commit 54f4974546
36 changed files with 2277 additions and 713 deletions
+43 -8
View File
@@ -1,26 +1,61 @@
{
"$schema": "https://json.schemastore.org/package.json",
"version": "1.16.2",
"version": "0.0.0",
"name": "@opencode-ai/http-recorder",
"description": "Record and replay Effect HTTP client traffic with deterministic cassettes",
"type": "module",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/anomalyco/opencode.git",
"directory": "packages/http-recorder"
},
"homepage": "https://github.com/anomalyco/opencode/tree/dev/packages/http-recorder",
"bugs": "https://github.com/anomalyco/opencode/issues",
"keywords": [
"effect",
"http",
"recording",
"replay",
"testing",
"vcr"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "bun test --timeout 30000",
"test:ci": "mkdir -p .artifacts/unit && bun test --timeout 30000 --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml",
"typecheck": "tsgo --noEmit"
"typecheck": "tsgo --noEmit",
"build": "bun ./script/build.ts",
"verify:package": "bun ./script/verify-package.ts"
},
"exports": {
".": "./src/index.ts",
"./*": "./src/*.ts"
"./internal": "./src/internal.ts"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"devDependencies": {
"@tsconfig/bun": "catalog:",
"@tsconfig/node22": "catalog:",
"@types/bun": "catalog:",
"@typescript/native-preview": "catalog:"
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"effect": "catalog:",
"typescript": "catalog:"
},
"dependencies": {
"@effect/platform-node": "catalog:",
"effect": "catalog:"
"@effect/platform-node": "4.0.0-beta.74",
"@effect/platform-node-shared": "4.0.0-beta.74"
},
"peerDependencies": {
"effect": "4.0.0-beta.74"
}
}