-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
46
47
48
49
50
{
"name": "micro-ftch",
"version": "0.4.1",
"description": "Wrappers for built-in fetch() enabling killswitch, logging, concurrency limit and other features",
"files": [
"lib",
"index.ts"
],
"main": "./lib/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/esm/index.js",
"default": "./lib/index.js"
}
},
"devDependencies": {
"@paulmillr/jsbt": "0.2.1",
"micro-should": "0.5.0",
"prettier": "3.3.2",
"typescript": "5.5.2"
},
"sideEffects": false,
"author": "Paul Miller (https://paulmillr.com)",
"license": "MIT",
"homepage": "https://github.com/paulmillr/micro-ftch",
"repository": {
"type": "git",
"url": "git+https://github.com/paulmillr/micro-ftch.git"
},
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"lint": "prettier --check index.ts",
"format": "prettier --write index.ts",
"test": "node test/index.js"
},
"keywords": [
"fetch",
"network",
"killswitch",
"concurrent",
"parallel",
"jsonrpc",
"replay",
"ftch"
],
"funding": "https://paulmillr.com/funding/"
}