-
-
Notifications
You must be signed in to change notification settings - Fork 375
/
package.json
101 lines (101 loc) · 3.18 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
98
99
100
101
{
"type": "module",
"version": "1.23.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"lint": "eslint . --cache",
"release": "bumpp",
"publish:ci": "pnpm -r publish --access public --no-git-checks",
"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",
"report-engine-js": "esno scripts/report-engine-js-compat.ts",
"bench": "vitest bench",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@antfu/ni": "catalog:",
"@antfu/utils": "catalog:",
"@rollup/plugin-alias": "catalog:",
"@rollup/plugin-commonjs": "catalog:",
"@rollup/plugin-json": "catalog:",
"@rollup/plugin-node-resolve": "catalog:",
"@rollup/plugin-replace": "catalog:",
"@rollup/plugin-terser": "catalog:",
"@shikijs/engine-javascript": "workspace:*",
"@shikijs/engine-oniguruma": "workspace:*",
"@shikijs/markdown-it": "workspace:*",
"@shikijs/monaco": "workspace:*",
"@shikijs/rehype": "workspace:*",
"@shikijs/transformers": "workspace:*",
"@shikijs/vitepress-twoslash": "workspace:*",
"@types/fs-extra": "catalog:",
"@types/hast": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"ansi-sequence-parser": "catalog:",
"bumpp": "catalog:",
"diff-match-patch-es": "^0.1.1",
"eslint": "catalog:",
"eslint-plugin-format": "catalog:",
"esno": "catalog:",
"fast-glob": "catalog:",
"fs-extra": "catalog:",
"jiti": "catalog:",
"jsonc-parser": "catalog:",
"lint-staged": "catalog:",
"markdown-it": "catalog:",
"mdast-util-from-markdown": "catalog:",
"mdast-util-gfm": "catalog:",
"mdast-util-to-hast": "catalog:",
"ofetch": "catalog:",
"picocolors": "catalog:",
"pnpm": "catalog:",
"prettier": "catalog:",
"rimraf": "catalog:",
"rollup": "catalog:",
"rollup-plugin-copy": "catalog:",
"rollup-plugin-dts": "catalog:",
"rollup-plugin-esbuild": "catalog:",
"rollup-plugin-typescript2": "catalog:",
"shiki": "workspace:*",
"simple-git-hooks": "catalog:",
"taze": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"vite": "catalog:",
"vite-tsconfig-paths": "catalog:",
"vitepress-plugin-mermaid": "catalog:",
"vitest": "catalog:",
"vue-tsc": "catalog:",
"wrangler": "catalog:"
},
"resolutions": {
"@shikijs/compat": "workspace:*",
"@shikijs/core": "workspace:*",
"@shikijs/engine-javascript": "workspace:*",
"@shikijs/engine-oniguruma": "workspace:*",
"@shikijs/markdown-it": "workspace:*",
"@shikijs/rehype": "workspace:*",
"@shikijs/transformers": "workspace:*",
"@shikijs/twoslash": "workspace:*",
"@shikijs/vitepress-twoslash": "workspace:*",
"@types/hast": "catalog:",
"@types/mdast": "catalog:",
"@types/unist": "catalog:",
"shiki": "workspace:*",
"typescript": "catalog:",
"unified": "catalog:",
"vscode-oniguruma": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}