{
  "name": "astro-eslint-parser",
  "version": "3.1.0",
  "description": "Astro component parser for ESLint",
  "type": "module",
  "main": "./lib/index.mjs",
  "types": "./lib/index.d.mts",
  "exports": {
    ".": {
      "types": "./lib/index.d.mts",
      "import": "./lib/index.mjs"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "lib"
  ],
  "engines": {
    "node": "^22.22.3 || ^24.16.0 || >=26.3.0"
  },
  "scripts": {
    "prebuild": "npm run -s clean",
    "build": "tsdown",
    "clean": "rimraf .nyc_output lib coverage",
    "lint": "npm run lint:js && npm run lint:ts",
    "lint:js": "eslint .",
    "lint:ts": "tsc --noEmit",
    "eslint-fix": "npm run lint -- --fix",
    "test": "npm run mocha -- \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
    "cover": "nyc --reporter=lcov npm run test",
    "debug": "npm run mocha -- \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
    "preversion": "npm run lint && npm test",
    "update-fixtures": "env-cmd -e debug -- npm run ts -- ./tools/update-fixtures.ts",
    "debug-parser": "npm run ts -- ./tools/parser-test.ts",
    "eslint-playground": "eslint tests/fixtures --ext .astro --config .eslintrc-for-playground.js --format codeframe",
    "benchmark": "npm run ts -- benchmark/index.ts",
    "ts": "env-cmd -e basic -- tsx",
    "mocha": "npm run ts -- ./node_modules/mocha/bin/mocha.js",
    "prerelease": "npm run clean && npm run build",
    "release": "changeset publish"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ota-meshi/astro-eslint-parser.git"
  },
  "keywords": [
    "astro",
    "astrojs",
    "eslint",
    "parser"
  ],
  "author": "Yosuke Ota",
  "funding": "https://github.com/sponsors/ota-meshi",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ota-meshi/astro-eslint-parser/issues"
  },
  "homepage": "https://github.com/ota-meshi/astro-eslint-parser#readme",
  "dependencies": {
    "@astrojs/compiler-rs": "^0.4.0",
    "@typescript-eslint/scope-manager": "^8.61.0",
    "@typescript-eslint/types": "^8.61.0",
    "debug": "^4.4.3",
    "eslint-scope": "^9.1.2",
    "eslint-visitor-keys": "^5.0.1",
    "espree": "^11.2.0",
    "semver": "^7.8.4",
    "tinyglobby": "^0.2.17"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^1.0.0",
    "@changesets/cli": "^3.0.0",
    "@eslint-community/eslint-plugin-eslint-comments": "^4.7.2",
    "@ota-meshi/eslint-plugin": "^0.20.0",
    "@types/benchmark": "^2.1.1",
    "@types/chai": "^5.0.0",
    "@types/debug": "^4.1.7",
    "@types/is-glob": "^4.0.4",
    "@types/mocha": "^10.0.0",
    "@types/node": "^24.0.0",
    "@types/semver": "^7.3.9",
    "@typescript-eslint/eslint-plugin": "^8.61.0",
    "@typescript-eslint/parser": "^8.61.0",
    "@typescript-eslint/typescript-estree": "^8.61.0",
    "astro": "^7.0.0",
    "astro-eslint-parser": ">=0.1.0",
    "benchmark": "^2.1.4",
    "chai": "^6.0.0",
    "env-cmd": "^11.0.0",
    "eslint": "^10.5.0",
    "eslint-config-prettier": "^10.0.0",
    "eslint-formatter-codeframe": "^7.32.1",
    "eslint-plugin-astro": "^3.0.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-jsdoc": "^64.0.0",
    "eslint-plugin-json-schema-validator": "^6.0.0",
    "eslint-plugin-jsonc": "^3.0.0",
    "eslint-plugin-n": "^18.0.0",
    "eslint-plugin-node-dependencies": "^2.0.0",
    "eslint-plugin-prettier": "^5.0.0",
    "eslint-plugin-regexp": "^3.0.0",
    "eslint-plugin-simple-import-sort": "^14.0.0",
    "eslint-plugin-svelte": "^3.19.0",
    "estree-walker": "^3.0.0",
    "globals": "^17.0.0",
    "mocha": "^11.0.0",
    "mocha-chai-jest-snapshot": "^1.1.3",
    "nyc": "^18.0.0",
    "prettier": "^3.0.0",
    "prettier-plugin-astro": "^0.14.0",
    "prettier-plugin-svelte": "^4.0.0",
    "string-replace-loader": "^3.0.3",
    "svelte": "^5.19.3",
    "tsdown": "^0.22.2",
    "tsx": "^4.22.4",
    "typescript": "~6.0.0",
    "typescript-eslint": "^8.61.0",
    "typescript-eslint-parser-for-extra-files": "^0.9.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
