mirror of
https://github.com/theoludwig/eslint-config-conventions.git
synced 2025-09-11 23:09:27 +02:00
Ref: https://typescript-eslint.io/packages/typescript-eslint/#migrating-to-defineconfig BREAKING CHANGE: peerDependencies: `eslint@^9.22.0` `eslint-plugin-unicorn@^61.0.0`
93 lines
2.3 KiB
JSON
93 lines
2.3 KiB
JSON
{
|
|
"name": "eslint-config-conventions",
|
|
"version": "0.0.0-development",
|
|
"public": true,
|
|
"description": "ESLint shareable config to enforce strict conventions and good code quality.",
|
|
"author": "Théo LUDWIG <contact@theoludwig.fr>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/theoludwig/eslint-config-conventions.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/theoludwig/eslint-config-conventions/issues"
|
|
},
|
|
"homepage": "https://github.com/theoludwig/eslint-config-conventions#readme",
|
|
"keywords": [
|
|
"eslintconfig",
|
|
"eslint",
|
|
"quality",
|
|
"strict linter",
|
|
"validate",
|
|
"code quality",
|
|
"conventions"
|
|
],
|
|
"main": "eslint.config.js",
|
|
"types": "index.d.ts",
|
|
"type": "module",
|
|
"files": [
|
|
"eslint.config.js",
|
|
"index.d.ts",
|
|
".oxlintrc.json"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"provenance": true
|
|
},
|
|
"engines": {
|
|
"node": ">=20.11.0"
|
|
},
|
|
"scripts": {
|
|
"lint:editorconfig": "editorconfig-checker",
|
|
"lint:eslint": "eslint . --max-warnings 0 --config eslint.config.mjs",
|
|
"lint:prettier": "prettier . --check",
|
|
"oxlint:migrate": "npx @oxlint/migrate@latest eslint.config.js --type-aware",
|
|
"inspect": "eslint --inspect-config",
|
|
"test": "node --test",
|
|
"release": "semantic-release"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": "^9.22.0",
|
|
"eslint-plugin-promise": "^7.2.1",
|
|
"eslint-plugin-unicorn": "^61.0.0",
|
|
"eslint-plugin-import-x": "^4.6.1",
|
|
"globals": "^16.0.0",
|
|
"typescript-eslint": "^8.32.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"eslint": {
|
|
"optional": true
|
|
},
|
|
"eslint-plugin-promise": {
|
|
"optional": true
|
|
},
|
|
"eslint-plugin-unicorn": {
|
|
"optional": true
|
|
},
|
|
"eslint-plugin-import-x": {
|
|
"optional": true
|
|
},
|
|
"globals": {
|
|
"optional": true
|
|
},
|
|
"typescript-eslint": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "24.3.1",
|
|
"globals": "16.4.0",
|
|
"editorconfig-checker": "6.1.0",
|
|
"oxlint": "1.15.0",
|
|
"@oxlint/migrate": "1.15.0",
|
|
"eslint": "9.35.0",
|
|
"eslint-plugin-promise": "7.2.1",
|
|
"eslint-plugin-unicorn": "61.0.2",
|
|
"eslint-plugin-import-x": "4.16.1",
|
|
"typescript-eslint": "8.43.0",
|
|
"prettier": "3.6.2",
|
|
"semantic-release": "24.2.8",
|
|
"typescript": "5.9.2"
|
|
}
|
|
}
|