121 lines
3.6 KiB
JSON
121 lines
3.6 KiB
JSON
{
|
|
"name": "eslint-define-config",
|
|
"version": "1.24.1",
|
|
"description": "Provide a defineConfig function for .eslintrc.js files",
|
|
"scripts": {
|
|
"clean": "rimraf coverage .eslintcache dist pnpm-lock.yaml node_modules",
|
|
"format": "prettier --cache --write .",
|
|
"lint:run": "eslint --cache --cache-strategy content --report-unused-disable-directives .",
|
|
"lint": "run-s build lint:run",
|
|
"typecheck": "vitest typecheck",
|
|
"ts-check": "tsc",
|
|
"test": "vitest",
|
|
"coverage": "vitest run --coverage",
|
|
"generate:rules": "tsx ./scripts/generate-rule-files/cli.ts",
|
|
"prepublishOnly": "pnpm run clean && pnpm install && pnpm run build",
|
|
"preflight": "pnpm install && run-s format lint ts-check test typecheck"
|
|
},
|
|
"type": "module",
|
|
"main": "dist/index.cjs",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"config",
|
|
"configuration",
|
|
"define-config",
|
|
"eslint-config",
|
|
"eslint",
|
|
"eslintconfig",
|
|
"typed",
|
|
"typescript"
|
|
],
|
|
"author": {
|
|
"name": "Christopher Quadflieg",
|
|
"email": "chrissi92@hotmail.de",
|
|
"url": "https://github.com/Shinigami92"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/eslint-types/eslint-define-config.git"
|
|
},
|
|
"funding": [
|
|
{
|
|
"type": "github",
|
|
"url": "https://github.com/Shinigami92"
|
|
},
|
|
{
|
|
"type": "paypal",
|
|
"url": "https://www.paypal.com/donate/?hosted_button_id=L7GY729FBKTZY"
|
|
}
|
|
],
|
|
"bugs": "https://github.com/eslint-types/eslint-define-config/issues",
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist",
|
|
"src",
|
|
"tsconfig.json"
|
|
],
|
|
"devDependencies": {
|
|
"@graphql-eslint/eslint-plugin": "~3.20.1",
|
|
"@intlify/eslint-plugin-vue-i18n": "~2.0.0",
|
|
"@poppinss/cliui": "~6.4.1",
|
|
"@types/dedent": "^0.7.2",
|
|
"@types/eslint": "~8.44.3",
|
|
"@types/json-schema": "~7.0.13",
|
|
"@types/node": "~20.8.3",
|
|
"@typescript-eslint/eslint-plugin": "~6.7.4",
|
|
"@typescript-eslint/parser": "~6.7.4",
|
|
"@vitest/coverage-v8": "~0.34.6",
|
|
"change-case": "~5.4.4",
|
|
"dedent": "^1.5.3",
|
|
"eslint-config-prettier": "~9.0.0",
|
|
"eslint-gitignore": "~0.1.0",
|
|
"eslint-plugin-deprecation": "~2.0.0",
|
|
"eslint-plugin-eslint-comments": "~3.2.0",
|
|
"eslint-plugin-import": "~2.28.1",
|
|
"eslint-plugin-inclusive-language": "~2.2.1",
|
|
"eslint-plugin-jsdoc": "~46.8.2",
|
|
"eslint-plugin-jsonc": "~2.9.0",
|
|
"eslint-plugin-jsx-a11y": "~6.7.1",
|
|
"eslint-plugin-mdx": "~3.1.5",
|
|
"eslint-plugin-n": "~16.1.0",
|
|
"eslint-plugin-node": "~11.1.0",
|
|
"eslint-plugin-prettier": "~5.0.0",
|
|
"eslint-plugin-promise": "~6.1.1",
|
|
"eslint-plugin-react": "~7.33.2",
|
|
"eslint-plugin-react-hooks": "~4.6.0",
|
|
"eslint-plugin-sonarjs": "~0.21.0",
|
|
"eslint-plugin-spellcheck": "~0.0.20",
|
|
"eslint-plugin-testing-library": "~6.0.2",
|
|
"eslint-plugin-unicorn": "~48.0.1",
|
|
"eslint-plugin-vitest": "~0.3.2",
|
|
"eslint-plugin-vue": "~9.17.0",
|
|
"eslint-plugin-vue-pug": "~0.6.0",
|
|
"eslint-plugin-yml": "~1.10.0",
|
|
"expect-type": "~0.17.3",
|
|
"graphql": "~16.8.1",
|
|
"json-schema": "~0.4.0",
|
|
"json-schema-to-ts": "~2.9.2",
|
|
"json-schema-to-typescript": "~13.1.1",
|
|
"npm-run-all": "~4.1.5",
|
|
"prettier-plugin-organize-imports": "^3.2.4",
|
|
"rimraf": "~5.0.5",
|
|
"tsup": "~7.2.0",
|
|
"vue-eslint-parser": "~9.3.2"
|
|
},
|
|
"packageManager": "pnpm@8.8.0",
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=9.0.0",
|
|
"pnpm": ">=8.6.0"
|
|
}
|
|
}
|