eslint-config/package.json
2026-05-28 13:45:08 -04:00

87 lines
2.2 KiB
JSON

{
"name": "@acamarata/eslint-config",
"version": "0.1.0",
"description": "Shared ESLint flat configs for acamarata packages. TypeScript-aware, Prettier-compatible, with base, browser, node, and React variants.",
"author": "Aric Camarata",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"pretest": "tsup",
"test": "node --test test/test.mjs",
"coverage": "node --test --experimental-test-coverage test/test.mjs",
"prepublishOnly": "tsup"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=8.0.0",
"@typescript-eslint/parser": ">=8.0.0",
"eslint": ">=9.0.0",
"eslint-config-prettier": ">=9.0.0",
"eslint-plugin-react": ">=7.0.0",
"eslint-plugin-react-hooks": ">=5.0.0"
},
"peerDependenciesMeta": {
"eslint-plugin-react": {
"optional": true
},
"eslint-plugin-react-hooks": {
"optional": true
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"tsup": "^8.4.0",
"typescript": "^5.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acamarata/eslint-config.git"
},
"homepage": "https://github.com/acamarata/eslint-config#readme",
"bugs": {
"url": "https://github.com/acamarata/eslint-config/issues"
},
"keywords": [
"eslint",
"eslint-config",
"typescript",
"react",
"node",
"flat-config",
"acamarata",
"linting"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "pnpm@10.11.1"
}