-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 798 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 798 Bytes
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
{
"name": "wengx-blog",
"version": "1.0.0",
"packageManager": "pnpm@9.0.6",
"description": "My blog, built with VitePress",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"start:css": "tailwindcss -i ./docs/.vitepress/theme/tailwind.css -o ./docs/.vitepress/theme/output.css --watch"
},
"keywords": [
"VitePress",
"Blog"
],
"author": "WengX",
"license": "ISC",
"devDependencies": {
"daisyui": "^4.10.2",
"medium-zoom": "^1.1.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vitepress": "^1.1.3"
},
"dependencies": {
"vue": "^3.4.25"
}
}