-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 899 Bytes
/
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
{
"name": "asyncsignal",
"version": "0.0.2",
"description": "Reusable asynchronous signals,it's a like promisewithResolvers",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"homepage": "https://github.com/zhangfisher/asyncsignal",
"repository": {
"type": "git",
"url": "git@github.com:zhangfisher/asyncsignal.git"
},
"access": "public",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"changeset": "changeset",
"release": "changeset version && changeset publish"
},
"keywords": [
"promise.withResolvers",
"async.signal"
],
"packageManager": "pnpm@9.0.0",
"author": "wxzhang@126.com",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@types/node": "^22.10.3",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}