Skip to content

Commit

Permalink
chore: use build in deps instead of peer deps
Browse files Browse the repository at this point in the history
  • Loading branch information
akinoccc committed Sep 8, 2024
1 parent 9a11cc3 commit 8d828b9
Show file tree
Hide file tree
Showing 4 changed files with 150 additions and 108 deletions.
5 changes: 3 additions & 2 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ export default defineConfig({
ts: true,
vue: true,
stylistic: true,
importx: true,
ignores: ['dist/*', 'node_modules/*'],
importX: true,
unusedImports: true,
ignores: ['dist/*', 'node_modules/*', '.eslint-config-inspector'],
globals: {
ref: true,
},
Expand Down
33 changes: 3 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,42 +49,13 @@
"access": "public",
"provenance": false
},
"peerDependencies": {
"@eslint/js": "^9.*",
"@stylistic/eslint-plugin": "^2.*",
"eslint": "^9.*",
"eslint-plugin-vue": "^9.*",
"typescript": "*",
"typescript-eslint": "^8.*",
"vue-eslint-parser": "^9.*"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
},
"typescript-eslint": {
"optional": true
},
"eslint-plugin-vue": {
"optional": true
},
"vue": {
"optional": true
},
"vue-eslint-parser": {
"optional": true
},
"@stylistic/eslint-plugin": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/config-inspector": "^0.5.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/eslint": "^8.56.11",
"@types/eslint": "^9.6.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-airbe": "1.0.0-beta.5",
Expand All @@ -98,7 +69,9 @@
"dependencies": {
"@eslint/js": "^9.8.0",
"@stylistic/eslint-plugin": "^2.3.0",
"eslint": "^9.10.0",
"eslint-plugin-import-x": "^3.1.0",
"eslint-plugin-unused-imports": "^4.1.3",
"eslint-plugin-vue": "^9.27.0",
"typescript-eslint": "8.0.0-alpha.46",
"vue-eslint-parser": "^9.4.3"
Expand Down
Loading

0 comments on commit 8d828b9

Please sign in to comment.