-
-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 629 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 629 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"version": "2.31.0",
"devDependencies": {
"cspell": "^9.6.2",
"prettier": "^3.8.1",
"prettier-plugin-vitepress": "^0.0.10",
"vitepress": "^1.6.4",
"vue": "^3.5.27"
},
"scripts": {
"start": "node --run docs:dev",
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"lint": "prettier . --write",
"test": "node --run test:format && node --run test:spelling",
"test:format": "prettier . --check",
"test:spelling": "cspell . --gitignore"
},
"dependencies": {
"@miletorix/vitepress-back-to-top-button": "^1.0.3"
}
}