forked from vueuse/vueuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
138 lines (138 loc) · 4.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
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
{
"name": "@vueuse/monorepo",
"type": "module",
"version": "11.0.3",
"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 && esno scripts/build-run.ts",
"build:redirects": "esno scripts/redirects.ts",
"build:rollup": "NODE_OPTIONS=\"--max-old-space-size=6144\" rollup --config=rollup.config.ts --configPlugin=rollup-plugin-esbuild",
"build:types": "tsc --emitDeclarationOnly && nr types:fix",
"clean": "rimraf --glob dist types \"packages/*/dist\"",
"dev": "nr update && nr docs",
"docs": "vue-demi-switch 3 && 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": "esno 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": "esno scripts/export-size.ts",
"test": "vitest",
"test:2": "vue-demi-switch 2.7 vue2 && vitest run --silent",
"test:3": "vue-demi-switch 3 && vitest run",
"test:all": "nr test:3 && nr test:2 && vue-demi-switch 3",
"test:cov": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"types:fix": "esno scripts/fix-types.ts",
"update": "nr -C packages/metadata update && esno scripts/update.ts",
"update:full": "nr update && nr build:types",
"watch": "esno scripts/build-run.ts --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/fs-extra": "catalog:",
"@types/js-yaml": "catalog:",
"@types/md5": "catalog:",
"@types/node": "catalog:",
"@types/remove-markdown": "catalog:",
"@types/semver": "catalog:",
"@vite-pwa/vitepress": "catalog:",
"@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/rxjs": "workspace:*",
"@vueuse/shared": "workspace:*",
"axios": "catalog:",
"bumpp": "catalog:",
"consola": "catalog:",
"esbuild-register": "catalog:",
"eslint": "catalog:",
"eslint-plugin-format": "catalog:",
"esno": "catalog:",
"export-size": "catalog:",
"fake-indexeddb": "catalog:",
"fast-glob": "catalog:",
"firebase": "catalog:",
"fs-extra": "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:",
"pnpm": "catalog:",
"postcss": "catalog:",
"postcss-nested": "catalog:",
"prettier": "catalog:",
"prism-theme-vars": "catalog:",
"remove-markdown": "catalog:",
"rimraf": "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:",
"typescript": "catalog:",
"unocss": "catalog:",
"unplugin-icons": "catalog:",
"unplugin-vue-components": "catalog:",
"vite": "catalog:",
"vite-plugin-inspect": "catalog:",
"vitepress": "catalog:",
"vitest": "catalog:",
"vue": "catalog:",
"vue2": "catalog:"
},
"pnpm": {
"neverBuiltDependencies": [
"electron"
]
},
"resolutions": {
"@typescript-eslint/utils": "catalog:",
"@vueuse/core": "workspace:*",
"@vueuse/integrations": "workspace:*",
"eslint": "catalog:",
"magic-string": "catalog:",
"rollup": "catalog:",
"vite": "catalog:",
"vite-plugin-pwa": "catalog:",
"vue-demi": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}