-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 841 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
37
38
39
{
"name": "http-with-fetch",
"version": "3.2.0",
"module": "lib/client.mjs",
"source": "src/client.mts",
"author": {
"name": "N. Md Faizaan",
"email": "[email protected]"
},
"bugs": "https://github.com/aulisius/http-with-fetch/issues",
"description": "A tiny abstraction over fetch",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aulisius/http-with-fetch.git"
},
"keywords": [
"fetch",
"http"
],
"types": "lib/client.d.mts",
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc",
"dev": "tsc -w",
"test": "node test.mjs",
"prepare": "npm run build"
},
"peerDependencies": {},
"devDependencies": {
"prettier": "3.3.3",
"rimraf": "6.0.1",
"typescript": "5.5.4"
},
"files": [
"lib/**",
"README.md"
]
}