-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.61 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
{
"name": "blog-lost-pieces",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"author": "Locietta <locietta@qq.com>",
"license": "MIT",
"devDependencies": {
"@css-render/vue3-ssr": "^0.15.14",
"@eslint/js": "^9.17.0",
"@giscus/vue": "^3.1.1",
"@img-comparison-slider/vue": "^8.0.0",
"@types/katex": "^0.16.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.10.5",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
"katex": "^0.16.19",
"lightningcss": "^1.28.2",
"lint-staged": "^15.3.0",
"markdown-it-wordless": "^1.1.1",
"naive-ui": "^2.41.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vitepress": "1.5.0",
"vue": "^3.5.13",
"vue-icons-plus": "^0.1.8",
"vue-tweet-pure": "^0.1.0"
},
"scripts": {
"dev": "vitepress dev",
"build": "vitepress build",
"lint": "eslint .vitepress/**/*.{ts,vue}",
"lint-fix": "eslint --fix .vitepress/**/*.{ts,vue}",
"preview": "vitepress preview",
"prepare": "husky"
},
"pnpm": {
"patchedDependencies": {
"vitepress": "patches/vitepress.patch"
}
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{css,md}": "prettier --write"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Locietta/blog-lost-pieces/blob/main/LICENSE"
}
],
"packageManager": "pnpm@10.0.0"
}