-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.33 KB
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
{
"name": "lb-fetch",
"version": "1.1.0",
"description": "Load balanced fetch",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fabrykowski/lb-fetch.git"
},
"homepage": "https://github.com/fabrykowski/lb-fetch#readme",
"bugs": {
"url": "https://github.com/fabrykowski/lb-fetch/issues"
},
"type": "module",
"exports": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"build": "tsc && esbuild src/index.ts --bundle --platform=node --format=esm --outdir=build --minify",
"lint": "eslint",
"format": "prettier --write ./src/"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@tsconfig/node22": "^22.0.1",
"@types/node": "^24.0.0",
"esbuild": "^0.25.2",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1"
},
"files": [
"/build",
"/npm-shrinkwrap.json"
],
"keywords": [
"fetch",
"request",
"requests",
"http",
"https",
"get",
"load balancing",
"node-fetch",
"rest",
"net",
"network",
"url"
]
}