-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.05 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
51
{
"name": "settle-map",
"description": "Settle multiple promises concurrently and get the results in a cool way",
"version": "2.0.1",
"repository": {
"type": "git",
"url": "fahimfaisaal/settle-map"
},
"bugs": "https://github.com/fahimfaisaal/settle-map/issues",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"private": false,
"author": "Fahim Faisaal",
"scripts": {
"build": "tsup",
"test": "vitest run",
"lint": "tsc",
"ci": "pnpm lint && pnpm test && pnpm build",
"release": "pnpm run ci && changeset publish"
},
"dependencies": {
"p-limit": "^3.1.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
},
"engineStrict": true,
"engines": {
"node": ">=16.14.0"
},
"keywords": [
"map",
"promise",
"limited",
"concurrency",
"batch",
"ratelimit",
"task",
"queue",
"async",
"await",
"promises"
],
"publishConfig": {
"provenance": true
}
}