-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.16 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
{
"name": "nyre-fetch",
"version": "4.0.0",
"description": "Simple fetch wrapper with a few extra features",
"author": "Chukwuma Nwaugha <nwaughac@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/nwaughachukwuma/nyre-fetch"
},
"license": "MIT",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"private": false,
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"tsc": "tsc",
"build": "tsup",
"test": "ava"
},
"files": [
"lib",
"!lib/index.test-d.ts"
],
"keywords": [
"fetch",
"node:fetch",
"http",
"https",
"request",
"streams"
],
"sideEffects": true,
"devDependencies": {
"@types/node": "^18.11.18",
"abort-controller": "^3.0.0",
"ava": "^5.3.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"undici": "^5.24.0"
},
"peerDependencies": {
"web-streams-polyfill": ">=3.2.1"
},
"peerDependenciesMeta": {
"web-streams-polyfill": {
"optional": true
}
},
"engines": {
"node": ">=18"
}
}