UNPKG

eslint-config-preact

Version:

Unopinionated base ESLint configuration for Preact and Preact CLI projects.

48 lines (47 loc) 1.27 kB
{ "name": "eslint-config-preact", "version": "2.0.0", "type": "module", "description": "Unopinionated base ESLint configuration for Preact and Preact CLI projects.", "keywords": [ "eslint", "eslint-config" ], "repository": "preactjs/eslint-config-preact", "license": "MIT", "author": "The Preact Authors (https://preactjs.com)", "main": "./index.js", "exports": { ".": { "default": "./index.js" } }, "files": [ "index.js" ], "scripts": { "lint": "eslint .", "test": "npm run lint && vitest run", "release": "git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish" }, "dependencies": { "@babel/core": "^7.13.16", "@babel/eslint-parser": "^7.27.5", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-jsx": "^7.12.13", "@eslint/js": "^9.29.0", "eslint-plugin-compat": "^6.0.2", "eslint-plugin-react": "^7.37.5", "eslint-plugin-react-hooks": "^5.2.0", "globals": "^16.2.0" }, "devDependencies": { "@types/eslint": "^9.6.1", "@types/node": "^24.0.4", "eslint": "^9.30.0", "vitest": "^3.2.4" }, "peerDependencies": { "eslint": "^8.57.1 || ^9.0.0" } }