| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "$schema": "https://json.schemastore.org/package.json",
- "version": "1.18.4",
- "name": "@opencode-ai/http-recorder",
- "description": "Record and replay Effect HTTP and WebSocket traffic with deterministic cassettes",
- "type": "module",
- "license": "MIT",
- "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 --only-failures",
- "typecheck": "tsgo --noEmit && tsgo -p test/tsconfig.json --noEmit",
- "build": "bun ./script/build.ts",
- "verify:package": "bun ./script/verify-package.ts"
- },
- "exports": {
- ".": "./src/index.ts"
- },
- "sideEffects": false,
- "files": [
- "dist",
- "README.md",
- "CHANGELOG.md",
- "LICENSE"
- ],
- "devDependencies": {
- "@tsconfig/node22": "catalog:",
- "@types/bun": "catalog:",
- "@types/node": "catalog:",
- "@typescript/native-preview": "catalog:",
- "@effect/platform-node": "catalog:",
- "effect": "catalog:",
- "typescript": "catalog:"
- },
- "dependencies": {
- "@effect/platform-node-shared": "4.0.0-beta.101"
- },
- "peerDependencies": {
- "effect": "catalog:"
- }
- }
|