-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.93 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.93 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
{
"name": "up-fetch",
"version": "2.6.0",
"description": "Advanced fetch client builder for typescript.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"src",
"skills",
"!skills/_artifacts"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "tsup",
"dev": "vitest",
"knip": "knip",
"lint": "biome check && tsc --noEmit",
"release": "bun scripts/release.ts ",
"test": "vitest run && npm run lint"
},
"keywords": [
"fetch",
"fetch-wrapper",
"fetch-client",
"schema",
"validation",
"standard-schema",
"zod",
"streaming",
"progress",
"retry"
],
"author": "Laurent Blondy",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@standard-schema/spec": "^1.0.0",
"@types/bun": "^1.3.0",
"@types/node": "^22.13.10",
"bumpp": "^10.3.1",
"consola": "^3.4.2",
"knip": "^5.66.2",
"msw": "^2.11.6",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "5.7.3",
"undici": "7.8.0",
"valibot": "1.0.0",
"vitest": "^4.0.1",
"zod": "3.24.2"
},
"publishConfig": {
"access": "public",
"branches": [
"master"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/L-Blondy/up-fetch.git"
},
"intent": {
"version": 1,
"repo": "L-Blondy/up-fetch",
"docs": "https://github.com/L-Blondy/up-fetch#readme"
},
"engines": {
"node": ">=18"
}
}