-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.36 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.36 KB
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
{
"name": "my-vuepress-site",
"description": "A VuePress project",
"version": "0.0.1",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.11.0",
"compilerOptions": {
"moduleResolution": "node16"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild"
]
},
"author": "睡个回笼觉~ <221250108@smail.nju.edu.cn>",
"engines": {
"node": "^20.6.0 || >=22.0.0"
},
"scripts": {
"dev": "vuepress dev docs",
"docs:dev-clean": "vuepress dev docs --clean-cache --clean-temp",
"docs:build": "vuepress build docs --clean-cache --clean-temp",
"docs:preview": "http-server docs/.vuepress/dist",
"vp-update": "pnpm dlx vp-update",
"deploy": "npm run docs:build && gh-pages -d docs/.vuepress/dist"
},
"devDependencies": {
"@types/d3-cloud": "^1.2.9",
"@types/d3-scale": "^4.0.9",
"@types/d3-selection": "^3.0.11",
"@vuepress/bundler-vite": "2.0.0-rc.23",
"@vuepress/shiki-twoslash": "2.0.0-rc.106",
"gh-pages": "^6.3.0",
"http-server": "^14.1.1",
"sass-embedded": "^1.89.0",
"typescript": "^5.8.3",
"vue": "^3.5.14",
"vuepress": "2.0.0-rc.23",
"vuepress-theme-plume": "1.0.0-rc.152"
},
"dependencies": {
"d3-cloud": "^1.2.7",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"echarts": "^5.6.0",
"mermaid": "^11.7.0"
}
}