-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 2.99 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 2.99 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@liting-yes/css",
"type": "module",
"description": "A css knowledge collection",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"author": "liting <luz.liting@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/liting-yes/css#readme",
"repository": {
"type": "git",
"url": "https://github.com/liting-yes/css.git"
},
"keywords": [
"css",
"study"
],
"scripts": {
"dev": "vitepress dev docs --host",
"build": "vitepress build docs",
"preview": "vitepress preview docs",
"lint": "eslint .",
"format": "eslint --fix .",
"commit": "git-cz",
"prepare": "git config core.hooksPath .git/hooks/ && npx simple-git-hooks"
},
"dependencies": {
"@sandboxrun/vue": "0.4.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.12.2",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/cz-commitlint": "^19.2.0",
"@tsconfig/node-lts-strictest": "^18.12.1",
"@vueuse/core": "^10.9.0",
"commitizen": "^4.3.0",
"eslint": "^9.0.0",
"inquirer": "^9.2.17",
"lint-staged": "^15.2.2",
"sass": "^1.74.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vite-svg-loader": "^5.1.0",
"vitepress": "1.0.2",
"vue": "^3.4.21"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit ''"
},
"lint-staged": {
"*.{js,cjs,jsx,ts,tsx,md,json}": "eslint --fix"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"requireBranch": "main"
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
]
},
"infile": "CHANGELOG.md",
"header": "# Changelog",
"ignoreRecommendedBump": true,
"strictSemVer": false
}
},
"hooks": {
"after:bump": "npx unbuild",
"after:git:release": "git push origin HEAD"
}
}
}