forked from vueuse/vueuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
141 lines (141 loc) · 4.55 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@vueuse/monorepo",
"type": "module",
"version": "12.3.0",
"private": true,
"packageManager": "[email protected]",
"description": "Collection of essential Vue Composition Utilities",
"author": "Anthony Fu<https://github.com/antfu>",
"license": "MIT",
"scripts": {
"build": "nr update && pnpm -r run build",
"build:redirects": "tsx scripts/redirects.ts",
"build:types": "tsc --emitDeclarationOnly",
"clean": "tsx scripts/clean.ts",
"dev": "nr update && nr docs",
"docs": "vitepress dev packages --open",
"docs:build": "nr update:full && vitepress build packages && nr build:redirects",
"docs:serve": "vitepress serve packages",
"lint": "eslint --cache .",
"lint:fix": "nr lint --fix",
"publish:ci": "tsx scripts/publish.ts",
"install-fonts": "gfi install Inter && gfi install Fira Code",
"release": "bumpp --execute=\"npm run release:prepare\" --all",
"release:prepare": "npm run build:types && npm run update",
"size": "tsx scripts/export-size.ts",
"test": "nr test:unit",
"test:cov": "vitest run --coverage",
"test:browser": "vitest --project browser --workspace=vitest.workspace.ts",
"test:unit": "vitest --project unit --workspace=vitest.workspace.ts",
"typecheck": "tsc --noEmit",
"update": "nr -C packages/metadata update && tsx scripts/update.ts",
"update:full": "nr update && nr build:types",
"watch": "pnpm -r --parallel run build --watch",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@antfu/ni": "catalog:",
"@iconify/json": "catalog:",
"@rollup/plugin-json": "catalog:",
"@rollup/plugin-replace": "catalog:",
"@shikijs/vitepress-twoslash": "catalog:",
"@type-challenges/utils": "catalog:",
"@types/js-yaml": "catalog:",
"@types/md5": "catalog:",
"@types/node": "catalog:",
"@types/remove-markdown": "catalog:",
"@types/semver": "catalog:",
"@vite-pwa/vitepress": "catalog:",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/browser": "^2.1.8",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"@vue/compiler-sfc": "catalog:",
"@vue/test-utils": "catalog:",
"@vueuse/core": "workspace:*",
"@vueuse/integrations": "workspace:*",
"@vueuse/math": "workspace:*",
"@vueuse/metadata": "workspace:*",
"@vueuse/nuxt": "workspace:*",
"@vueuse/rxjs": "workspace:*",
"@vueuse/shared": "workspace:*",
"axios": "catalog:",
"bumpp": "catalog:",
"consola": "catalog:",
"esbuild-register": "catalog:",
"eslint": "catalog:",
"eslint-plugin-format": "catalog:",
"export-size": "catalog:",
"fake-indexeddb": "catalog:",
"firebase": "catalog:",
"fuse.js": "catalog:",
"google-font-installer": "catalog:",
"gray-matter": "catalog:",
"js-yaml": "catalog:",
"jsdom": "catalog:",
"lint-staged": "catalog:",
"markdown-table": "catalog:",
"md5": "catalog:",
"msw": "catalog:",
"node-fetch": "catalog:",
"node-fetch-native": "catalog:",
"ofetch": "catalog:",
"playwright": "^1.49.1",
"pnpm": "catalog:",
"postcss": "catalog:",
"postcss-nested": "catalog:",
"prettier": "catalog:",
"prism-theme-vars": "catalog:",
"remove-markdown": "catalog:",
"rollup": "catalog:",
"rollup-plugin-dts": "catalog:",
"rollup-plugin-esbuild": "catalog:",
"rollup-plugin-pure": "catalog:",
"sharp": "catalog:",
"simple-git": "catalog:",
"simple-git-hooks": "catalog:",
"taze": "catalog:",
"tinyglobby": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"unocss": "catalog:",
"unplugin-icons": "catalog:",
"unplugin-vue-components": "catalog:",
"vite": "catalog:",
"vite-plugin-inspect": "catalog:",
"vitepress": "catalog:",
"vitest": "catalog:",
"vitest-browser-vue": "^0.0.1",
"vue": "catalog:"
},
"pnpm": {
"neverBuiltDependencies": [
"electron"
]
},
"resolutions": {
"@typescript-eslint/utils": "catalog:",
"@vueuse/core": "workspace:*",
"@vueuse/integrations": "workspace:*",
"@vueuse/math": "workspace:*",
"@vueuse/metadata": "workspace:*",
"@vueuse/nuxt": "workspace:*",
"@vueuse/rxjs": "workspace:*",
"@vueuse/shared": "workspace:*",
"eslint": "catalog:",
"magic-string": "catalog:",
"rollup": "catalog:",
"vite": "catalog:",
"vite-plugin-pwa": "catalog:",
"vue": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}