-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"$schema": "https://json.schemastore.org/package.json",
"version": "0.2.2",
"name": "effect-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/effect-http-recorder.git"
},
"homepage": "https://github.com/anomalyco/effect-http-recorder#readme",
"bugs": "https://github.com/anomalyco/effect-http-recorder/issues",
"keywords": [
"effect",
"http",
"recording",
"replay",
"testing",
"vcr"
],
"engines": {
"node": ">=22",
"bun": ">=1.3.14"
},
"publishConfig": {
"access": "public",
"tag": "beta",
"provenance": true
},
"scripts": {
"changeset": "changeset",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint src test examples script",
"lint:fix": "oxlint --fix src test examples script",
"check:imports": "bun ./script/check-static-imports.ts",
"test": "bun test --timeout 30000 --only-failures",
"test:examples": "vitest run --config examples/vitest.config.ts",
"record:examples": "rm -rf examples/recordings && bun run test:examples",
"typecheck": "tsgo --noEmit && tsgo -p test/tsconfig.json --noEmit",
"build": "bun ./script/build.ts",
"verify:package": "bun ./script/verify-package.ts",
"check": "bun run format:check && bun run lint && bun run check:imports && bun run typecheck && bun run test && bun run test:examples && bun run verify:package",
"version": "changeset version",
"release": "bun ./script/publish.ts",
"prepack": "bun run build"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"CHANGELOG.md"
],
"devDependencies": {
"@changesets/cli": "2.31.0",
"@effect/platform-node": "4.0.0-beta.83",
"@effect/vitest": "4.0.0-beta.83",
"@tsconfig/node22": "22.0.2",
"@types/bun": "1.3.13",
"@types/node": "24.12.2",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"effect": "4.0.0-beta.83",
"oxfmt": "0.56.0",
"oxlint": "1.60.0",
"typescript": "5.8.2",
"vitest": "4.0.16"
},
"dependencies": {
"@effect/platform-node-shared": "4.0.0-beta.83"
},
"peerDependencies": {
"effect": "4.0.0-beta.83"
},
"packageManager": "bun@1.3.14",
"overrides": {
"@effect/platform-node-shared": "4.0.0-beta.83"
}
}