-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.81 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
{
"name": "xzq-vite-plugins-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "index.js",
"scripts": {
"test": "vitest",
"build": "pnpm -r --filter=./packages/* run build",
"dev": "pnpm -r --filter=./packages/* run dev",
"format": "prettier --write --cache .",
"release": "node scripts/release.js",
"release-dry": "node scripts/release.js --dry",
"ci-publish": "node scripts/publishCI.js",
"lint:fix": "eslint --fix --cache packages/**/src/** playground/**/__tests__/**",
"prepare": "husky install"
},
"author": "xzq",
"license": "MIT",
"engines": {
"node": "^16.0.0",
"pnpm": "^7.9.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.6.3",
"conventional-changelog-cli": "^2.2.2",
"es-module-lexer": "^1.0.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-define-config": "^1.6.0",
"eslint-plugin-vue": "^9.5.1",
"execa": "^6.1.0",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"minimist": "^1.2.6",
"picocolors": "^1.0.0",
"playwright-chromium": "^1.24.0",
"prettier": "^2.7.1",
"prompts": "^2.4.2",
"semver": "^7.3.7",
"unbuild": "^0.7.6",
"vite": "^3.0.2",
"vite-plugin-inspect": "^0.6.0",
"vitest": "^0.20.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"vite",
"vue"
]
}
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
],
"packages/**/src/**": [
"eslint --cache --fix"
],
"playground/**/__tests__/**": [
"eslint --cache --fix"
]
}
}