Skip to content

Commit

Permalink
chore: add proper dependencies
Browse files Browse the repository at this point in the history
We were only declaring `devDependencies`, so this refactors the `package.json` to use `dependencies` when it makes sense.
`@vue/runtime-core` was also used in some imports, where we could use `vue` directly, so this commit changes this as well.
  • Loading branch information
cexbrayat committed Jan 26, 2023
1 parent 1d76ebd commit 8f6d349
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 63 deletions.
9 changes: 5 additions & 4 deletions package.json
Expand Up @@ -21,6 +21,11 @@
"README.md",
"dist/index.d.ts"
],
"dependencies": {
"@vue/compiler-dom": "3.2.45",
"js-beautify": "1.14.6",
"vue": "3.2.45"
},
"devDependencies": {
"@rollup/plugin-commonjs": "24.0.0",
"@rollup/plugin-json": "6.0.0",
Expand All @@ -35,15 +40,12 @@
"@vitejs/plugin-vue-jsx": "3.0.0",
"@vitest/coverage-c8": "0.28.1",
"@vue/compat": "3.2.45",
"@vue/compiler-dom": "3.2.45",
"@vue/compiler-sfc": "3.2.45",
"@vue/runtime-core": "3.2.45",
"c8": "7.12.0",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"js-beautify": "1.14.6",
"jsdom": "21.0.0",
"jsdom-global": "3.0.2",
"lint-staged": "13.1.0",
Expand All @@ -56,7 +58,6 @@
"vite": "4.0.4",
"vitepress": "0.22.4",
"vitest": "0.28.1",
"vue": "3.2.45",
"vue-class-component": "8.0.0-rc.1",
"vue-router": "4.1.6",
"vue-tsc": "1.0.24",
Expand Down

0 comments on commit 8f6d349

Please sign in to comment.