-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.5 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
76
77
78
79
80
81
82
83
84
85
{
"name": "my-blog",
"version": "1.1.0",
"description": "我的博客,使用 vitepress 构建",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "vitepress dev docs --host 0.0.0.0",
"build": "vitepress build docs",
"fetch:docs": "cd scripts && bash weekly-docs.sh",
"algolia": "docker run -it --env-file=.env -e \"CONFIG=$(cat algolia.json | jq -r tostring)\" algolia/docsearch-scraper",
"typecheck": "tsc --noEmit && vue-tsc --noEmit --skipLibCheck",
"lint:fix": "prettier --write \"{docs, daily}/**/*.{vue, js, ts, scss, json, md}\"",
"cleanup": "sa cleanup",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"svgo": "svgo -f docs/.vitepress/assets/svg -o docs/.vitepress/assets/svg",
"preview": "vitepress preview docs",
"prepare": "npx husky install",
"release": "standard-version",
"update-pkg": "sa update-pkg"
},
"keywords": [
"博客",
"申光普",
"vitepress"
],
"author": "申光普",
"license": "MIT",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
}
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@sa/scripts": "workspace:*",
"@types/fs-extra": "^11.0.4",
"@types/markdown-it": "^14.1.1",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@typescript-eslint/types": "^7.11.0",
"autoprefixer": "^10.4.19",
"eslint": "~8.56.0",
"eslint-plugin-import": "^2.29.1",
"eve": "~0.5.4",
"fs-extra": "^11.2.0",
"globby": "^14.0.1",
"gray-matter": "^4.0.3",
"gsap": "~2.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"markdown-it-mathjax3": "^4.3.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.77.2",
"search-insights": "^2.14.0",
"snapsvg-cjs": "^0.0.6",
"standard-version": "^9.5.0",
"svgo": "^3.3.2",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"vite-svg-loader": "^5.1.0",
"vitepress": "^1.2.2",
"vitepress-plugin-rss": "^0.2.6",
"vue": "^3.4.27",
"vue-tsc": "^2.0.19"
},
"lint-staged": {
"{docs, daily}/**/*.{vue, js, ts, scss, json, md}": [
"prettier --write",
"git add -A"
]
},
"dependencies": {
"@giscus/vue": "^3.0.0",
"@vueuse/core": "^10.10.0",
"magic-snowflakes": "^6.3.0",
"oh-my-live2d": "^0.19.3"
}
}