This repository has been archived by the owner on Feb 7, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
88 lines (88 loc) · 2.58 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
{
"type": "module",
"version": "0.10.2",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"lint": "eslint .",
"release": "bumpp && pnpm -r publish",
"test": "vitest",
"typecheck": "vue-tsc --noEmit",
"build": "pnpm -r run build",
"docs": "pnpm -C docs run docs:dev",
"docs:build": "pnpm -C docs run docs:build",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.3",
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.7",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@types/fs-extra": "^11.0.4",
"@types/hast": "^3.0.3",
"@types/node": "^20.11.7",
"@vitest/coverage-v8": "^1.2.1",
"ansi-sequence-parser": "^1.1.1",
"bumpp": "^9.3.0",
"eslint": "npm:[email protected]",
"eslint-plugin-format": "^0.1.0",
"eslint-ts-patch": "8.56.0-0",
"esno": "^4.0.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"jsonc-parser": "^3.2.1",
"lint-staged": "^15.2.0",
"markdown-it": "^14.0.0",
"markdown-it-shikiji": "workspace:*",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-gfm": "^3.0.0",
"mdast-util-to-hast": "^13.1.0",
"ofetch": "^1.3.3",
"pnpm": "^8.14.3",
"prettier": "^3.2.4",
"rehype-shikiji": "workspace:*",
"rimraf": "^5.0.5",
"rollup": "^4.9.6",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-typescript2": "^0.36.0",
"shikiji": "workspace:*",
"shikiji-transformers": "workspace:*",
"simple-git-hooks": "^2.9.0",
"taze": "^0.13.1",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vite": "^5.0.12",
"vitepress-plugin-twoslash": "workspace:*",
"vitest": "^1.2.1",
"vue-tsc": "^1.8.27",
"wrangler": "^3.24.0"
},
"resolutions": {
"@types/hast": "^3.0.3",
"@types/mdast": "^4.0.3",
"@types/unist": "^3.0.2",
"markdown-it-shikiji": "workspace:*",
"rehype-shikiji": "workspace:*",
"shikiji": "workspace:*",
"shikiji-compat": "workspace:*",
"shikiji-core": "workspace:*",
"shikiji-transformers": "workspace:*",
"shikiji-twoslash": "workspace:*",
"unified": "^11.0.4",
"vitepress-plugin-twoslash": "workspace:*",
"vscode-oniguruma": "^1.7.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}