-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.15 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.15 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
{
"name": "code-snippets",
"description": "⌨️ Some code snippets makes your life better!",
"author": "Bruce Song <[email protected]> (https://github.com/recallwei/)",
"scripts": {
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"cspell:check": "cspell \"**\"",
"eslint:check": "eslint \"**/*.{ts,tsx,js,tsx,vue}\" --color",
"eslint:fix": "pnpm eslint:check --fix",
"prettier:check": "prettier --check --ignore-unknown .",
"prettier:fix": "prettier --write --ignore-unknown .",
"preinstall": "npx only-allow pnpm",
"prepare": "husky"
},
"type": "module",
"devDependencies": {
"@brucesong/eslint-config-vue": "^1.0.22",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"commitizen": "^4.3.0",
"cspell": "^8.4.1",
"cz-git": "^1.8.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"vitepress": "1.0.0-rc.44",
"vue": "^3.4.19"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"private": true,
"license": "MIT"
}