-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.52 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
{
"name": "@afoures/http-client",
"version": "0.3.0",
"description": "A typesafe and robust HTTP client",
"homepage": "https://github.com/afoures/http-client#readme",
"bugs": {
"url": "https://github.com/afoures/http-client/issues"
},
"license": "MIT",
"author": "Antoine Fourès <contact@afoures.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/afoures/http-client.git"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "node --test src/**/*.test.ts",
"bench:endpoint": "node src/lib/endpoint.bench.ts",
"bench:http-client": "node src/lib/http-client.bench.ts",
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"format": "oxfmt",
"prepublishOnly": "pnpm run build"
},
"files": [
"dist",
"docs",
"package.json",
"README.md"
],
"keywords": [],
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"packageManager": "pnpm@10.10.0",
"dependencies": {
"@remix-run/route-pattern": "^0.18.0",
"@standard-schema/spec": "^1.1.0"
},
"devDependencies": {
"@afoures/auto-release": "^0.5.0",
"@arktype/attest": "^0.56.0",
"@types/node": "^24.12.2",
"msw": "^2.13.2",
"oxfmt": "^0.36.0",
"oxlint": "^1.59.0",
"tsdown": "^0.21.0",
"typescript": "^5.9.3",
"zod": "^4.3.6"
}
}