-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 873 Bytes
/
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
{
"name": "yet-another-fetch",
"version": "0.1.0",
"description": "An HTTP client with retry functionality, callbacks, and error handling using neverthrow.",
"keywords": [
"fetch",
"neverthrow",
"HTTP client"
],
"author": "Oleg Borodatov",
"repository": {
"type": "git",
"url": "https://github.com/borolgs/yet-another-fetch"
},
"license": "MIT",
"private": true,
"type": "module",
"exports": "./src/index.ts",
"scripts": {
"test": "vitest run --reporter=verbose",
"build": "smartbundle",
"format": "biome format --write ./src",
"lint": "biome check --apply ./src"
},
"dependencies": {
"neverthrow": "8.1.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "22.10.1",
"smartbundle": "0.11.1",
"typescript": "5.7.2",
"undici": "7.0.0",
"vitest": "2.1.6"
}
}