UNPKG

@feathers-community/eslint-config

Version:

Default eslint-config for feathers-community projects. It's esm and flat config only.

70 lines 1.7 kB
{ "name": "@feathers-community/eslint-config", "version": "0.0.8", "description": "", "keywords": [ "feathers", "feathers.js", "eslint", "eslint-config" ], "license": "MIT", "author": "Feathers Community", "repository": { "type": "git", "url": "git://github.com/feathers-community/eslint-config.git" }, "bugs": { "url": "https://github.com/feathers-community/eslint-config/issues" }, "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "default": "./dist/index.js" } }, "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "CHANGELOG.md", "LICENSE", "README.md", "src/**", "dist/**" ], "dependencies": { "@eslint/js": "^9.29.0", "@typescript-eslint/eslint-plugin": "^8.35.0", "@typescript-eslint/parser": "^8.35.0", "eslint-config-prettier": "^10.1.5", "eslint-import-resolver-typescript": "^4.4.3", "eslint-plugin-import-x": "^4.15.2", "eslint-plugin-package-json": "^0.41.0", "eslint-plugin-prettier": "^5.5.0", "eslint-plugin-unicorn": "^59.0.1", "eslint-plugin-unused-imports": "^4.1.4", "globals": "^16.2.0", "typescript-eslint": "^8.35.0" }, "devDependencies": { "@tsconfig/node22": "^22.0.2", "@types/node": "^24.0.4", "eslint": "^9.29.0", "jiti": "^2.4.2", "np": "^10.2.0", "tsup": "^8.5.0" }, "peerDependencies": { "eslint": "^9.0.0" }, "scripts": { "build": "tsup --clean --dts", "lint": "eslint", "release": "np", "test": "eslint", "version": "pnpm run build", "check": "pnpm run test && pnpm run build" } }