-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
72 lines (72 loc) · 1.99 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
{
"name": "@twoslash/monorepo",
"type": "module",
"version": "0.2.12",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"typecheck": "tsc",
"build": "pnpm -r run build",
"test": "vitest",
"lint": "eslint .",
"bench": "vitest bench --run",
"release": "bumpp -r && pnpm -r publish",
"docs": "pnpm -C docs run docs:dev",
"docs:build": "pnpm -C docs run docs:build",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@iconify-json/ri": "catalog:",
"@iconify-json/svg-spinners": "catalog:",
"@shikijs/markdown-it": "catalog:",
"@shikijs/transformers": "catalog:",
"@shikijs/twoslash": "catalog:",
"@shikijs/vitepress-twoslash": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@typescript/twoslash": "catalog:",
"@typescript/vfs": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vueuse/core": "catalog:",
"bumpp": "catalog:",
"eslint": "catalog:",
"esno": "catalog:",
"fast-glob": "catalog:",
"jiti": "catalog:",
"lint-staged": "catalog:",
"lz-string": "catalog:",
"mlly": "catalog:",
"preact": "catalog:",
"pretty-format": "catalog:",
"react": "catalog:",
"shiki": "catalog:",
"simple-git-hooks": "catalog:",
"tslib": "catalog:",
"twoslash": "workspace:*",
"twoslash-cdn": "workspace:*",
"twoslash-eslint": "workspace:*",
"twoslash-vue": "workspace:*",
"typescript": "catalog:",
"unbuild": "catalog:",
"unplugin-vue-components": "catalog:",
"vite": "catalog:",
"vite-tsconfig-paths": "catalog:",
"vitest": "catalog:",
"vue": "catalog:"
},
"resolutions": {
"@types/node": "^22.7.4",
"twoslash": "workspace:*",
"twoslash-vue": "workspace:*",
"typescript": "catalog:",
"vue": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}