@aetherjs/eslint-config
Version:
Standard ESLint config for Aether-Development projects.
84 lines (83 loc) • 1.84 kB
JSON
{
"name": "@aetherjs/eslint-config",
"version": "1.3.0",
"description": "Standard ESLint config for Aether-Development projects.",
"author": "@aetherjs",
"license": "MIT",
"type": "module",
"main": "dist/base.js",
"exports": {
".": {
"default": "./dist/base.js"
},
"./nextjs": {
"default": "./dist/nextjs.js"
},
"./react": {
"default": "./dist/react.js"
}
},
"sideEffects": false,
"scripts": {
"build": "tsup",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run"
},
"dependencies": {
"@eslint/js": "^9.24.0",
"@next/eslint-plugin-next": "^15.2.5",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1"
},
"devDependencies": {
"@favware/cliff-jumper": "^6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aether-development/utilities.git",
"directory": "packages/eslint-config"
},
"bugs": {
"url": "https://github.com/aether-development/utilities/issues"
},
"homepage": "https://github.com/aether-development/utilities/tree/main/packages/eslint-config",
"keywords": [
"aether-development",
"bot",
"typescript",
"ts",
"bun",
"aetherjs",
"standalone"
],
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
},
"nx": {
"targets": {
"lint": {
"executor": "nx:run-commands",
"dependsOn": [
"@aetherjs/eslint-config:build"
],
"options": {
"command": "eslint src --fix",
"cwd": "{projectRoot}"
}
}
}
}
}