-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 875 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
40
41
{
"devDependencies": {
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"node-fetch": "^3.3.1"
},
"name": "ts-node-fetcher",
"description": "A easier-to-use 'node-fetch'",
"version": "1.0.15",
"main": "src/main.ts",
"types": "src/types.d.ts",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KevinKaiwenZheng/fetcher.git"
},
"keywords": [
"fetch",
"node-fetch",
"fetcher",
"typescript",
"http",
"https",
"GET",
"POST",
"server",
"ts-node-fetch"
],
"author": "thrawnk",
"license": "MIT",
"bugs": {
"url": "https://github.com/KevinKaiwenZheng/fetcher/issues"
},
"homepage": "https://github.com/KevinKaiwenZheng/fetcher#readme"
}