{
  "name": "@maninak/eslint-config",
  "type": "module",
  "version": "0.4.0",
  "description": "A batteries-included lint-and-format suite for maximum DX and minimum friction. Supports JS, TS, Vue, JSX, and more.",
  "funding": [
    {
      "type": "liberapay",
      "url": "https://liberapay.com/maninak/donate"
    },
    {
      "type": "github",
      "url": "https://github.com/sponsors/maninak"
    }
  ],
  "author": "Kostis Maninakis <maninak@protonmail.com> (https://maninak.github.io)",
  "license": "MIT",
  "homepage": "https://github.com/maninak/eslint-config#README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/maninak/eslint-config.git"
  },
  "bugs": "https://github.com/maninak/eslint-config/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc",
  "keywords": [
    "eslint",
    "prettier",
    "eslint-config",
    "maninak"
  ],
  "engines": {
    "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  },
  "files": [
    "dist",
    "scripts"
  ],
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "peerDependencies": {
    "eslint": "^9.10.0 || ^10.0.0",
    "typescript": "^5.4.0 || ^6.0.0"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  },
  "dependencies": {
    "@antfu/eslint-config": "^9.0.0",
    "@nuxt/eslint-config": "^1.15.2",
    "@stylistic/eslint-plugin": "^5.0.0",
    "eslint-config-prettier": "^10.1.0",
    "eslint-plugin-jasmine": "^4.0.0",
    "eslint-plugin-prettier": "^5.2.0",
    "eslint-plugin-prettier-vue": "^5.0.0",
    "eslint-plugin-tailwindcss": "^3.18.0",
    "eslint-plugin-vue-scoped-css": "^3.1.0",
    "prettier": "^3.1.0",
    "tinyglobby": "^0.2.17",
    "ts-deepmerge": "^8.0.0",
    "yaml": "^2.9.0"
  },
  "devDependencies": {
    "@types/eslint": "^9.0.0",
    "@types/estree": "^1.0.0",
    "@types/node": "^25.0.0",
    "eslint-define-config": "link:@@antfu/eslint-define-config",
    "publint": "^0.3.0",
    "tsup": "^8.0.0",
    "vitest": "^4.1.8"
  },
  "simple-git-hooks": {
    "pre-commit": "npx lint-staged"
  },
  "lint-staged": {
    "*": "eslint --fix --max-warnings 0 --no-warn-ignored --cache --cache-strategy content --cache-location node_modules/.cache/eslint"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "verify-deps": "npx pnpm i --frozen-lockfile --prefer-offline",
    "build": "tsup src/index.ts --format esm,cjs --sourcemap --clean",
    "postbuild": "tsc -p tsconfig.build.json --emitDeclarationOnly && cp ./dist/index.d.ts ./dist/index.d.cts",
    "lint": "eslint . --max-warnings 0 --no-warn-ignored --cache --cache-strategy content --cache-location node_modules/.cache/eslint --concurrency=auto",
    "test": "npm run test:unit && npm run test:typings",
    "test:typings": "tsc -p tsconfig.typecheck.json --noEmit",
    "test:unit": "vitest run",
    "test:build-artifact": "vitest run test/build-artifact.test.ts",
    "preversion": "npm run verify-deps && npm run lint && npm run test && npm run build && npm run test:build-artifact && publint"
  }
}