-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.32 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
{
"name": "@resq-sw/http",
"version": "0.1.1",
"description": "Effect-based HTTP client with retry, timeout, and schema validation",
"license": "Apache-2.0",
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.mts",
"import": "./lib/index.mjs",
"default": "./lib/index.mjs"
},
"./security": {
"types": "./lib/security.d.mts",
"import": "./lib/security.mjs",
"default": "./lib/security.mjs"
}
},
"main": "lib/index.mjs",
"types": "lib/index.d.mts",
"files": [
"lib",
"README.md"
],
"scripts": {
"build": "tsdown",
"test": "vitest run"
},
"peerDependencies": {
"effect": ">=3.0.0",
"@effect/platform": ">=0.60.0",
"@effect/platform-bun": ">=0.40.0"
},
"peerDependenciesMeta": {
"@effect/platform-bun": {
"optional": true
}
},
"devDependencies": {
"@effect/platform-bun": "4.0.0-beta.78",
"@types/node": "^25.9.1",
"effect": "4.0.0-beta.78",
"tsdown": "^0.22.2",
"typescript": "6.0.3",
"vitest": "4.1.8"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/resq-software/npm.git",
"directory": "packages/http"
},
"keywords": [
"http",
"fetch",
"effect",
"retry",
"schema-validation"
],
"engines": {
"node": ">=20.19.0"
}
}