-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "simple-fetch-wrap",
"version": "1.1.0",
"description": "A simple, lightweight fetch wrapper designed to simplify making HTTP requests in both JavaScript and TypeScript projects. It comes with built-in support for configuring global headers, base URL, and authorization tokens, making it easier to interact with REST APIs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"setup": "npx tsc --init",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/shoaibkh4n/simple-fetch-wrap.git"
},
"keywords": [
"fetch",
"fetch-api",
"typescript",
"http",
"api",
"wrapper",
"authorization",
"headers",
"nodejs"
],
"author": "Shoaib Khan <shoaibkhan@quazire.com>",
"funding": "https://github.com/sponsors/shoaibkh4n",
"contributors": [
{
"name": "Shoaib Khan",
"email": "shoaibkhan@quazire.com",
"url": "https://www.npmjs.com/~shoaibkh4n"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/shoaibkh4n/simple-fetch-wrap/issues"
},
"homepage": "https://github.com/shoaibkh4n/simple-fetch-wrap#readme",
"devDependencies": {
"@types/node": "^20.11.30",
"typescript": "^5.4.3"
}
}