-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
75 lines (75 loc) · 2.15 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
{
"name": "root",
"version": "3.50.1",
"description": "A standalone components library for Vue.Js & Nuxt.Js (v3.x)",
"scripts": {
"preinstall": "npx only-allow pnpm",
"clean": "git clean -fXd -e \\!.env -e \\!.env.* -e \\!.idea -e \\!.idea/**/* -e \\!.vscode -e \\!.vscode/**/* -e \\!*.crt -e \\!*.key",
"prepare": "npx husky",
"pre-commit": "lint-staged",
"commit": "cz",
"format": "prettier . --write",
"lint": "lerna run lint --parallel",
"release": "pnpm release:bump-version && pnpm release:changelogen",
"release:bump-version": "lerna version",
"release:changelogen": "ts-node -e \"import { updateChangelog } from './changelog-generate'; updateChangelog()\"",
"release:check-config": "ts-node -e \"import { checkConfig } from './changelog-generate'; checkConfig()\""
},
"lint-staged": {
"!(node_modules/**/*|packages/**/*|.prettierignore|.gitignore|.editorconfig).*": [
"prettier --write"
]
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@types/node": "^22.10.1",
"changelogen": "^0.5.7",
"commitizen": "^4.3.1",
"cross-env": "^7.0.3",
"eslint": "9.14.0",
"eslint-plugin-sonarjs": "^2.0.4",
"eslint-plugin-tailwindcss": "^3.17.5",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"ts-node": "11.0.0-beta.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LouisMazel/maz-ui.git"
},
"keywords": [
"vue",
"components",
"vue-component",
"framework",
"library",
"ui"
],
"author": "LouisMazel <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/LouisMazel/maz-ui/issues"
},
"homepage": "https://maz-ui.com/",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"webpack",
"@vue/compiler-dom",
"vue",
"vitest"
]
}
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}