UNPKG

eslint-config-airbe

Version:

A shared eslint config to apply eslint fastly

89 lines (88 loc) 2.32 kB
{ "name": "eslint-config-airbe", "version": "1.2.1", "description": "A shared eslint config to apply eslint fastly", "keywords": [ "eslint", "eslint-config", "code style", "lint", "code lint", "code format" ], "repository": { "type": "git", "url": "git+https://github.com/akinoccc/eslint-config-airbe.git" }, "author": "Akino", "license": "MIT", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist/*" ], "main": "./dist/index.mjs", "types": "./dist/index.d.mts", "scripts": { "build:inspector": "pnpm build && npx @eslint/config-inspector build", "build": "tsup --format esm,cjs --clean --dts", "watch": "tsup --format esm,cjs --watch", "dev": "pnpm watch & npx @eslint/config-inspector --config eslint.config.mjs", "lint": "eslint", "lint:fix": "eslint --fix", "typecheck": "tsc --noEmit", "cz": "cz", "prepare": "husky", "release": "semantic-release" }, "lint-staged": { "*.{js,jsx,vue,cjs,mjs}": [ "npm run lint:fix", "git add ." ] }, "publishConfig": { "access": "public", "provenance": false }, "devDependencies": { "@commitlint/cli": "^19.3.0", "@commitlint/config-conventional": "^19.2.2", "@eslint/config-inspector": "^0.5.2", "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "@types/eslint": "^9.6.1", "commitizen": "^4.3.0", "cz-conventional-changelog": "^3.3.0", "eslint-config-airbe": "1.0.0-beta.5", "husky": "^9.1.3", "lint-staged": "^15.2.7", "semantic-release": "^24.0.0", "tsup": "^8.2.3", "typescript": "^5.5.4", "vue": "^3.4.34" }, "dependencies": { "@eslint/js": "^9.8.0", "@stylistic/eslint-plugin": "^2.9.0", "eslint": "^9.12.0", "eslint-plugin-import-x": "^4.3.1", "eslint-plugin-unused-imports": "^4.1.3", "eslint-plugin-vue": "^9.27.0", "typescript-eslint": "8.19.0", "vue-eslint-parser": "^9.4.3" }, "pnpm": { "overrides": { "micromatch@<4.0.8": ">=4.0.8", "rollup@>=4.0.0 <4.22.4": ">=4.22.4", "cross-spawn@>=7.0.0 <7.0.5": ">=7.0.5", "@eslint/plugin-kit@<0.2.3": ">=0.2.3", "nanoid@<3.3.8": ">=3.3.8" } } }