-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
85 lines (85 loc) · 2.04 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
{
"name": "quansync",
"type": "module",
"version": "0.2.2",
"packageManager": "pnpm@10.5.1",
"description": "Create sync/async APIs with usable logic",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"contributors": [
{ "name": "三咲智子 Kevin Deng", "email": "sxzz@sxzz.moe" }
],
"license": "MIT",
"funding": [
{ "type": "individual", "url": "https://github.com/sponsors/antfu" },
{ "type": "individual", "url": "https://github.com/sponsors/sxzz" }
],
"homepage": "https://github.com/antfu-collective/quansync#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu-collective/quansync.git"
},
"bugs": "https://github.com/antfu-collective/quansync/issues",
"keywords": [
"async",
"sync",
"generator"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./macro": {
"import": "./dist/macro.mjs",
"require": "./dist/macro.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp && pnpm publish",
"start": "tsx src/index.ts",
"benchmark": "node scripts/benchmark.js",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "^4.3.0",
"@types/node": "^22.13.5",
"bumpp": "^10.0.3",
"eslint": "^9.21.0",
"gensync": "1.0.0-beta.2",
"lint-staged": "^15.4.3",
"mitata": "^1.0.34",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"unbuild": "^3.5.0",
"vite": "^6.2.0",
"vitest": "^3.0.7"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}