-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.4 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
{
"name": "yumi-fetch",
"version": "0.3.0",
"description": "🍭 An extensible fetch wrapper for simplified and powerful HTTP requests using native web APIs",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/mod.d.ts",
"type": "module",
"files": [
"dist/",
"src/",
"package.json",
"README.md",
"LICENSE"
],
"author": {
"name": "Artem Melnyk",
"url": "https://github.com/MellKam"
},
"sideEffects": false,
"exports": {
".": {
"default": "./dist/mod.js",
"import": "./dist/mod.js",
"require": "./dist/mod.cjs",
"types": "./dist/mod.d.ts"
},
"./plugins": {
"default": "./dist/plugins.js",
"import": "./dist/plugins.js",
"require": "./dist/plugins.cjs",
"types": "./dist/plugins/mod.d.ts"
}
},
"typesVersions": {
"*": {
"index": [
"./dist/mod.d.ts"
],
"plugins": [
"./dist/plugins/mod.d.ts"
]
}
},
"license": "MIT",
"repository": "github:MellKam/yumi-fetch",
"readme": "https://github.com/MellKam/yumi-fetch#readme",
"homepage": "https://github.com/MellKam/yumi-fetch#readme",
"bugs": {
"url": "https://github.com/MellKam/yumi-fetch/issues"
},
"keywords": [
"fetch",
"client",
"request",
"response",
"yumi",
"api",
"rest",
"http",
"network",
"middleware",
"extensible",
"plugin"
]
}