-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "fetch-manager",
"version": "0.1.10",
"module": "./src/FetchManager.ts",
"description": "A dependency-free TypeScript request manager for applications that need to use native fetch while controlling concurrency, request rates, retries, and pagination.",
"keywords": [
"fetch",
"native",
"rate",
"limit",
"limiter",
"rate limiter",
"concurrency",
"pager",
"paging",
"pagination",
"retry",
"typescript"
],
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^26.1.2"
},
"peerDependencies": {
"typescript": "^5"
},
"exports": {
".": "./src/FetchManager.ts",
"./lib": "./src/LibCallback.ts"
},
"type": "module",
"scripts": {
"run_tests": "bun test --pool-1 --bail",
"build_wikidata": "bun build --minify --target=node --outfile=demo/wikidata.js demo/wikidata/",
"build_browser": "bun build --target=browser --outfile=demo/browser/index.js demo/browser/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/citkane/fetchmanager.git"
},
"homepage": "https://github.com/citkane/fetchmanager",
"license": "GPL-3.0",
"author": "Michael Jonker"
}