-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "vitepress-blog",
"description": "Blog",
"author": "zhixiangyao <blueskyzx@icloud.com> <https://github.com/zhixiangyao>",
"homepage": "https://github.com/zhixiangyao/vitepress-blog",
"repository": {
"type": "git",
"url": "git+https://github.com/zhixiangyao/vitepress-blog.git"
},
"keywords": [
"zhixiangyao",
"blog",
"vitepress",
"vue",
"pnpm",
"monorepo"
],
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"scripts": {
"dev": "cd ./packages/blog && pnpm docs:dev",
"build": "cd ./packages/blog && pnpm docs:build",
"------- 🌕 FORMAT -------": "",
"lint": "eslint --cache --cache-location node_modules/.cache/eslint/",
"lint:stylelint": "stylelint --fix \"./**/*.{vue,postcss,css}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@antfu/eslint-config": "3.12.1",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "8.18.2",
"autoprefixer": "10.4.20",
"eslint": "9.17.0",
"lint-staged": "15.2.11",
"medium-zoom": "1.1.0",
"postcss": "8.4.49",
"postcss-html": "1.7.0",
"stylelint": "16.12.0",
"stylelint-config-recommended-vue": "1.5.0",
"stylelint-config-standard": "36.0.1",
"stylelint-order": "6.0.4",
"tailwindcss": "3.4.17",
"typescript": "5.7.2",
"vite": "6.0.6",
"vitepress": "1.5.0",
"vue": "3.5.13"
},
"lint-staged": {
"*": [
"eslint --cache --cache-location node_modules/.cache/eslint/"
],
"./**/*.{vue,postcss,css}": [
"npx stylelint --fix --cache --cache-location node_modules/.cache/stylelint/"
]
}
}