fix(deps): move all dependencies to devDependencies #19
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes changes to the
package.json
andpnpm-lock.yaml
files to move several dependencies fromdependencies
todevDependencies
. This reorganization helps to ensure that only necessary packages are included in the production build, potentially reducing the final bundle size and improving performance.Dependency reorganization:
package.json
: Moved the following packages fromdependencies
todevDependencies
:@unhead/vue
,@vueuse/core
,dompurify
,express
,marked
,puppeteer
,vite-node
,vue
, andvue-router
.pnpm-lock.yaml
: Updated theimporters
section to reflect the changes inpackage.json
, moving the same packages todevDependencies
. [1] [2] [3]