docs: move typedoc to docs deps

This commit is contained in:
braks
2022-10-08 21:59:50 +02:00
committed by Braks
parent e5930b361a
commit 13d576da4b
7 changed files with 42 additions and 42 deletions

View File

@@ -3,11 +3,12 @@
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "pnpm run typedoc && vitepress dev src",
"build": "pnpm run typedoc && vitepress build src",
"dev": "pnpm run typedoc:md && vitepress dev src",
"build": "pnpm run typedoc:md && vitepress build src",
"serve": "vitepress serve src",
"lint": "eslint --ext \".js,.jsx,.ts,.tsx\" --fix --ignore-path .gitignore .",
"typedoc": "typedoc --options ./typedoc.json"
"typedoc:md": "typedoc --options ./typedoc.md.json",
"typedocs": "typedoc --options ./typedoc.json"
},
"dependencies": {
"@algolia/client-search": "^4.14.2",
@@ -28,6 +29,9 @@
"@windicss/plugin-scrollbar": "^1.2.3",
"dotenv": "^16.0.1",
"ohmyfetch": "^0.4.18",
"typedoc": "^0.22.18",
"typedoc-plugin-markdown": "^3.13.4",
"typedoc-plugin-merge-modules": "^4.0.1",
"unplugin-auto-import": "^0.10.3",
"unplugin-icons": "^0.14.8",
"unplugin-vue-components": "^0.21.2",