forked from MagicMirrorOrg/MagicMirror-Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 797 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 797 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
{
"version": "2.31.0",
"devDependencies": {
"@vuepress/bundler-vite": "^2.0.0-rc.21",
"@vuepress/plugin-back-to-top": "^2.0.0-rc.94",
"@vuepress/plugin-docsearch": "^2.0.0-rc.95",
"@vuepress/plugin-google-analytics": "^2.0.0-rc.94",
"@vuepress/theme-default": "^2.0.0-rc.95",
"cspell": "^8.18.1",
"prettier": "^3.5.3",
"prettier-config-vuepress": "^5.0.0",
"sass-embedded": "^1.86.3",
"vue": "^3.5.13",
"vuepress": "^2.0.0-rc.21"
},
"scripts": {
"start": "node --run docs:dev",
"docs:dev": "vuepress dev .",
"docs:build": "vuepress build .",
"lint": "prettier . --write",
"test": "node --run test:format && node --run test:spelling",
"test:format": "prettier . --check",
"test:spelling": "cspell . --gitignore"
}
}