-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.01 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@zunh/promise-kit",
"version": "0.0.5",
"description": "Some promise extension functions",
"main": "./dist/index.mjs",
"homepage": "https://github.com/zhaozunhong/promise-kit#readme",
"author": "zhaozunhong",
"repository": {
"type": "git",
"url": "git+https://github.com/zhaozunhong/promise-kit.git"
},
"bugs": "https://github.com/zhaozunhong/promise-kit/issues",
"scripts": {
"build": "unbuild",
"dev": "vitest",
"prepublishOnly": "pnpm build",
"release": "bumpp && npm publish --access=public"
},
"sideEffects": false,
"keywords": [
"promise",
"async",
"await",
"task"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./with": {
"types": "./dist/with.d.ts",
"import": "./dist/with.mjs",
"require": "./dist/with.cjs"
},
"./array": {
"types": "./dist/array.d.ts",
"import": "./dist/array.mjs",
"require": "./dist/array.cjs"
},
"./sleep": {
"types": "./dist/sleep.d.ts",
"import": "./dist/sleep.mjs",
"require": "./dist/sleep.cjs"
},
"./task": {
"types": "./dist/task.d.ts",
"import": "./dist/task.mjs",
"require": "./dist/task.cjs"
}
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
},
"./with": {
"*": [
"./dist/with.*",
"./dist/with.d.ts"
]
},
"./array": {
"*": [
"./dist/array.*",
"./dist/array.d.ts"
]
},
"./sleep": {
"*": [
"./dist/sleep.*",
"./dist/sleep.d.ts"
]
},
"./task": {
"*": [
"./dist/task.*",
"./dist/task.d.ts"
]
}
},
"files": [
"dist"
],
"license": "MIT",
"dependencies": {
"bumpp": "^9.9.1",
"typescript": "^5.7.2",
"unbuild": "^3.0.1",
"vitest": "^2.1.8"
}
}