-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 2.9 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "up-fetch",
"version": "0.7.1",
"description": "Slim and flexible HTTP client based on the Fetch API.",
"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"
}
},
"./with-valibot": {
"import": {
"types": "./dist/with-valibot.d.ts",
"default": "./dist/with-valibot.js"
},
"require": {
"types": "./dist/with-valibot.d.cts",
"default": "./dist/with-valibot.cjs"
}
},
"./with-zod": {
"import": {
"types": "./dist/with-zod.d.ts",
"default": "./dist/with-zod.js"
},
"require": {
"types": "./dist/with-zod.d.cts",
"default": "./dist/with-zod.cjs"
}
},
"./package.json": "./package.json"
},
"scripts": {
"lint": "eslint . --ext .ts",
"build": "tsup",
"dev": "vitest",
"test": "vitest run && tsc --noEmit",
"release:pre:beta": "git pull && node scripts/check-beta-version.js && npm run test && npm run build",
"release:pre:stable": "git pull && node scripts/check-stable-version.js && 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": {
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"jsdom": "^21.1.1",
"msw": "^2.2.3",
"prettier": "^2.8.7",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"valibot": ">=0.1.0",
"vitest": "^0.29.8",
"zod": ">=3"
},
"peerDependencies": {
"zod": ">=3",
"valibot": ">=0.1.0"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
},
"valibot": {
"optional": true
}
},
"publishConfig": {
"access": "public",
"branches": [
"master"
]
},
"repository": {
"type": "git",
"url": "https://github.com/L-Blondy/up-fetch"
},
"engines": {
"node": ">=18"
}
}