-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
100 lines (100 loc) · 2.82 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "kotodama",
"type": "module",
"version": "0.1.1",
"private": true,
"packageManager": "pnpm@9.12.2",
"author": {
"email": "me@yunyoujun.cn",
"name": "YunYouJun",
"url": "https://www.yunyoujun.cn"
},
"homepage": "https://kotodama.vercel.app",
"repository": {
"url": "https://github.com/YunYouJun/kotodama"
},
"scripts": {
"build": "npm run build:ssg",
"build:ssg": "cross-env NODE_ENV=production vite-ssg build",
"dev": "vite --port 3333 --open",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"preview-https": "serve dist",
"postinstall": "npx simple-git-hooks",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"@unhead/vue": "^1.11.10",
"@vueuse/core": "^11.1.0",
"@vueuse/head": "^2.0.0",
"axios": "^1.7.7",
"dayjs": "^1.11.13",
"md5": "^2.3.0",
"nprogress": "^0.2.0",
"pinia": "^2.2.4",
"prism-theme-vars": "^0.2.5",
"ua-parser-js": "^1.0.39",
"vue": "^3.5.12",
"vue-i18n": "9",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@iconify-json/carbon": "^1.2.3",
"@iconify-json/logos": "^1.2.3",
"@iconify-json/mdi": "^1.2.1",
"@iconify-json/ri": "^1.2.2",
"@iconify-json/simple-icons": "^1.2.9",
"@intlify/unplugin-vue-i18n": "4",
"@shikijs/markdown-it": "^1.22.0",
"@types/markdown-it-link-attributes": "^3.0.5",
"@types/md5": "^2.3.5",
"@types/node": "^22.7.9",
"@types/nprogress": "^0.2.3",
"@types/ua-parser-js": "^0.7.39",
"@unocss/eslint-plugin": "^0.63.6",
"@vitejs/plugin-vue": "^5.1.4",
"@waline/client": "^3.3.2",
"critters": "^0.0.25",
"cross-env": "^7.0.3",
"element-plus": "2.8.2",
"eslint": "^9.13.0",
"eslint-plugin-format": "^0.1.2",
"https-localhost": "^4.7.1",
"lint-staged": "^15.2.10",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-prism": "^2.3.0",
"marked": "^14.1.3",
"patch-vue-directive-ssr": "^0.0.1",
"pnpm": "^9.12.2",
"sass": "^1.80.4",
"simple-git-hooks": "^2.11.1",
"star-markdown-css": "^0.5.3",
"typescript": "5.5.4",
"unocss": "^0.63.6",
"unplugin-auto-import": "^0.18.3",
"unplugin-vue-components": "^0.27.4",
"unplugin-vue-markdown": "^0.26.2",
"unplugin-vue-router": "^0.10.8",
"vite": "^5.4.10",
"vite-plugin-inspect": "^0.8.7",
"vite-plugin-pwa": "^0.20.5",
"vite-plugin-vue-devtools": "^7.5.4",
"vite-plugin-vue-layouts": "^0.11.0",
"vite-ssg": "0.23.8",
"vite-ssg-sitemap": "^0.8.1",
"vitest": "^2.1.3",
"vue-recaptcha": "^2.0.3",
"vue-tsc": "^2.1.6"
},
"resolutions": {
"@typescript-eslint/utils": "^8.11.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}