-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.19 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
{
"type": "module",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm run --filter vue-air-datepicker build && pnpm run --filter plugins build",
"prepublishOnly": "nr build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "pnpm --filter vue-air-datepicker typecheck",
"prepare": "simple-git-hooks",
"bumpp": "bumpp package.json packages/*/package.json",
"release": "cd packages/vue-air-datepicker && pnpm release"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.1",
"@antfu/ni": "^0.21.12",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20.12.7",
"bumpp": "^9.4.0",
"eslint": "^9.2.0",
"eslint-plugin-format": "^0.1.1",
"lint-staged": "^15.2.2",
"pnpm": "^9.0.2",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.11.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit ${1}"
},
"lint-staged": {
"*": "eslint --fix"
}
}