-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
67 lines (67 loc) · 2.14 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
{
"name": "eslint-plugin-prettier-vue",
"version": "5.0.0",
"description": "ESLint plugin for Prettier formatting, which is better for Vue SFC",
"homepage": "https://github.com/meteorlxy/eslint-plugin-prettier-vue",
"repository": "https://github.com/meteorlxy/eslint-plugin-prettier-vue.git",
"license": "MIT",
"author": "meteorlxy <[email protected]>",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rimraf ./lib *.tsbuildinfo",
"dev": "tsc -b --watch tsconfig.build.json",
"lint": "eslint --ext .ts ./src",
"lint:test": "eslint --ext .vue ./test",
"prepare": "husky install",
"prepublishOnly": "pnpm clean && pnpm build && pnpm lint",
"publish": "git push origin main --tags",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1 && git add CHANGELOG.md"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{json,md,yml}": "prettier --write",
"package.json": "sort-package-json"
},
"prettier": "@meteorlxy/prettier-config",
"dependencies": {
"@vue/compiler-sfc": "^3.3.4",
"picocolors": "^1.0.0",
"prettier": "^3.0.3",
"prettier-linter-helpers": "^1.0.0",
"synckit": "^0.8.5"
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@meteorlxy/eslint-config-prettier": "^2.27.3",
"@meteorlxy/eslint-config-prettier-typescript": "^2.28.1",
"@meteorlxy/eslint-config-typescript-vue": "^2.28.1",
"@meteorlxy/prettier-config": "^2.11.0",
"@meteorlxy/tsconfig": "^2.29.0",
"@types/eslint": "^8.44.4",
"@types/node": "^20.8.6",
"@types/prettier-linter-helpers": "^1.0.2",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.51.0",
"eslint-plugin-prettier-vue": "link:",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.1",
"rimraf": "^5.0.5",
"sort-package-json": "^2.6.0",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16"
}
}