-
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) · 966 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 966 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
{
"name": "stormmsite",
"version": "0.0.1",
"description": "Documentation website for STORMM",
"license": "MIT",
"type": "module",
"scripts": {
"docs:build": "vuepress build docs && node docs/.vuepress/copy-doxygen.js",
"docs:clean-dev": "vuepress dev docs --clean-cache && node docs/.vuepress/copy-doxygen.js",
"docs:dev": "node docs/.vuepress/copy-doxygen.js && vuepress dev docs",
"docs:update-package": "npx vp-update",
"spell:check": "cspell \"docs/**/*.md\" \"*.md\"",
"spell:check-suggestions": "cspell \"docs/**/*.md\" \"*.md\" --show-suggestions",
"spell:check-silent": "cspell \"docs/**/*.md\" \"*.md\" --silent",
"spell:check-progress": "cspell \"docs/**/*.md\" \"*.md\" --progress"
},
"devDependencies": {
"@vuepress/bundler-vite": "^2.0.0-rc.7",
"@vuepress/theme-default": "^2.0.0-rc.11",
"cspell": "^9.0.2",
"fs-extra": "^11.2.0",
"vue": "^3.4.0",
"vuepress": "^2.0.0-rc.7"
}
}