Skip to content

Commit

Permalink
fix: peer dependencies issue (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
Garfield550 authored Feb 3, 2025
1 parent d562847 commit d7aab89
Show file tree
Hide file tree
Showing 3 changed files with 213 additions and 196 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@
},
"devDependencies": {
"@biscuittin/eslint-config": "workspace:^",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@commitlint/types": "^19.5.0",
"@types/lint-staged": "^13.3.0",
"@types/node": "^22.13.0",
"@vitest/coverage-v8": "^3.0.4",
"dprint": "^0.48.0",
"dprint": "^0.49.0",
"eslint": "^9.19.0",
"eslint-typegen": "^1.0.0",
"happy-dom": "^16.8.1",
Expand Down
22 changes: 16 additions & 6 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,30 +36,38 @@
"peerDependencies": {
"@typescript-eslint/parser": ">=8.17.0",
"dprint": ">=0.47.0",
"eslint": ">=9.15.0"
"eslint": ">=9.15.0",
"tailwindcss": ">=3.4.0 <4",
"typescript": "^5.7.3"
},
"peerDependenciesMeta": {
"@typescript-eslint/parser": {
"optional": false
"optional": true
},
"dprint": {
"optional": true
},
"eslint": {
"optional": false
},
"tailwindcss": {
"optional": true
},
"typescript": {
"optional": true
}
},
"dependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint-react/eslint-plugin": "^1.26.0",
"@eslint-react/eslint-plugin": "^1.26.1",
"@eslint-sukka/eslint-plugin-react-jsx-a11y": "^6.13.3",
"@eslint/js": "^9.17.0",
"@eslint/json": "^0.10.0",
"@next/eslint-plugin-next": "^15.1.6",
"@package-json/types": "^0.0.11",
"@stylistic/eslint-plugin-jsx": "^3.0.1",
"eslint-config-flat-gitignore": "^2.0.0",
"eslint-flat-config-utils": "^2.0.0",
"eslint-flat-config-utils": "^2.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-antfu": "^3.0.0",
"eslint-plugin-autofix": "^2.2.0",
Expand Down Expand Up @@ -87,7 +95,9 @@
"@types/eslint-plugin-react-refresh": "^0.4.0",
"@types/eslint-plugin-tailwindcss": "^3.17.0",
"@typescript-eslint/parser": "^8.22.0",
"dprint": "^0.48.0",
"eslint": "^9.17.0"
"dprint": "^0.49.0",
"eslint": "^9.17.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
}
}
Loading

0 comments on commit d7aab89

Please sign in to comment.