-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 994 Bytes
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 994 Bytes
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
{
"name": "@phothinmaung/resolves",
"version": "1.0.0",
"description": "Run a list of functions in series, concurrently, or allSettled.",
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"types": "lib/index.d.cts",
"exports": {
".": {
"require": {
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
},
"import": {
"types": "./lib/index.d.mts",
"default": "./lib/index.mjs"
}
}
},
"keywords": [
"Promise",
"resolved"
],
"author": {
"name": "Pho Thin Mg",
"email": "phothinmg@disroot.org",
"url": "https://phothinmg.github.io/"
},
"license": "ISC",
"files": [
"lib",
"LICENSE",
"README.md",
"package.json"
],
"publishConfig": {
"access": "public"
},
"repository": {
"url": "git+https://github.com/phothinmg/resolves.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/phothinmg/resolves/issues"
}
}