-
-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathpackage.json
101 lines (101 loc) · 2.92 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
{
"name": "@vitejs/vite-plugin-vue-monorepo",
"private": true,
"type": "module",
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"homepage": "https://github.com/vitejs/vite-plugin-vue/",
"repository": {
"type": "git",
"url": "git+https://github.com/vitejs/vite-plugin-vue.git"
},
"keywords": [
"frontend",
"hmr",
"dev-server",
"build-tool",
"vite",
"vue"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"format": "prettier --write --cache .",
"lint": "eslint --cache .",
"typecheck": "tsc -p scripts --noEmit && tsc -p playground --noEmit",
"test": "pnpm test-serve && pnpm test-build",
"test-serve": "vitest run -c vitest.config.e2e.ts",
"test-build": "VITE_TEST_BUILD=1 vitest run -c vitest.config.e2e.ts",
"test-build-without-plugin-commonjs": "VITE_TEST_WITHOUT_PLUGIN_COMMONJS=1 pnpm test-build",
"debug-serve": "VITE_DEBUG_SERVE=1 vitest run -c vitest.config.e2e.ts",
"debug-build": "VITE_TEST_BUILD=1 VITE_PRESERVE_BUILD_ARTIFACTS=1 vitest run -c vitest.config.e2e.ts",
"build": "pnpm -r --filter='./packages/*' run build",
"dev": "pnpm -r --parallel --filter='./packages/*' run dev",
"release": "tsx scripts/release.ts",
"ci-publish": "tsx scripts/publishCI.ts"
},
"devDependencies": {
"@babel/types": "^7.27.0",
"@eslint/js": "^9.24.0",
"@types/babel__core": "^7.20.5",
"@types/convert-source-map": "^2.0.3",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.14.0",
"@vitejs/release-scripts": "^1.4.0",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.24.0",
"eslint-import-resolver-typescript": "^4.3.2",
"eslint-plugin-import-x": "^4.10.2",
"eslint-plugin-n": "^17.17.0",
"eslint-plugin-regexp": "^2.7.0",
"execa": "^9.5.2",
"fs-extra": "^11.3.0",
"lint-staged": "^15.5.0",
"picocolors": "^1.1.1",
"playwright-chromium": "^1.51.1",
"prettier": "3.5.3",
"rollup": "^4.38.0",
"simple-git-hooks": "^2.12.1",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1",
"unbuild": "3.5.0",
"vite": "catalog:",
"vitest": "^3.1.1",
"vue": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
],
"packages/*/{src,types}/**/*.ts": [
"eslint --cache --fix"
],
"packages/**/*.d.ts": [
"eslint --cache --fix"
],
"playground/**/__tests__/**/*.ts": [
"eslint --cache --fix"
]
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@vitejs/plugin-vue": "workspace:*"
},
"ignoredBuiltDependencies": [
"@parcel/watcher",
"core-js",
"esbuild"
],
"onlyBuiltDependencies": [
"playwright-chromium",
"simple-git-hooks"
]
}
}