-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.26 KB
/
package.json
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": "1.3.1",
"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"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"scripts": {
"lint": "eslint . && tsc --noEmit",
"build": "tsup",
"dev": "vitest",
"test": "vitest run",
"release:pre:beta": "git pull && node scripts/check-beta-version.js && npm run lint && npm run test && npm run build",
"release:pre:stable": "git pull && node scripts/check-stable-version.js && npm run lint && npm run test && npm run build",
"release:stable": "npm run release:pre:stable && npm publish && npm run release:post",
"release:beta": "npm run release:pre:beta && npm publish --tag beta && npm run release:post",
"release:post": "git add . && git commit -a && git tag v$npm_package_version && git push --tags && git push"
},
"keywords": [
"fetch",
"fetch wrapper",
"request",
"http",
"config",
"fetcher",
"api",
"rest",
"get",
"axios",
"wretch",
"got",
"ky"
],
"author": "Laurent Blondy",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/node": "^22.13.1",
"eslint": "^9.20.0",
"eslint-plugin-prefer-let": "^4.0.0",
"jsdom": "^26.0.0",
"msw": "^2.7.0",
"prettier": "^3.5.0",
"tsup": "^8.3.6",
"typescript": "5.7.3",
"typescript-eslint": "^8.24.0",
"valibot": ">=1.0.0-rc.0",
"vitest": "^3.0.5",
"zod": "3.24.1"
},
"publishConfig": {
"access": "public",
"branches": [
"master"
]
},
"repository": {
"type": "git",
"url": "https://github.com/L-Blondy/up-fetch"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@standard-schema/spec": "^1.0.0"
}
}