{
  "name": "astro-eslint-parser",
  "version": "1.2.1",
  "description": "Astro component parser for ESLint",
  "main": "lib/index.js",
  "module": "lib/index.mjs",
  "files": [
    "lib"
  ],
  "engines": {
    "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  },
  "scripts": {
    "prebuild": "npm run -s clean",
    "build": "npm run build:tsup",
    "build:tsup": "tsup",
    "clean": "rimraf .nyc_output lib coverage",
    "lint": "eslint .",
    "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 node -r esbuild-register",
    "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": "^2.0.0",
    "@typescript-eslint/scope-manager": "^7.0.0 || ^8.0.0",
    "@typescript-eslint/types": "^7.0.0 || ^8.0.0",
    "astrojs-compiler-sync": "^1.0.0",
    "debug": "^4.3.4",
    "entities": "^6.0.0",
    "eslint-scope": "^8.0.1",
    "eslint-visitor-keys": "^4.0.0",
    "espree": "^10.0.0",
    "fast-glob": "^3.3.3",
    "is-glob": "^4.0.3",
    "semver": "^7.3.8"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0.5.0",
    "@changesets/cli": "^2.24.2",
    "@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
    "@ota-meshi/eslint-plugin": "^0.17.6",
    "@types/benchmark": "^2.1.1",
    "@types/chai": "^5.0.0",
    "@types/debug": "^4.1.7",
    "@types/eslint": "^9.0.0",
    "@types/eslint-scope": "^3.7.0",
    "@types/eslint-visitor-keys": "^3.0.0",
    "@types/is-glob": "^4.0.4",
    "@types/mocha": "^10.0.0",
    "@types/node": "^22.0.0",
    "@types/semver": "^7.3.9",
    "@typescript-eslint/eslint-plugin": "^8.21.0",
    "@typescript-eslint/parser": "^8.21.0",
    "@typescript-eslint/typescript-estree": "^8.21.0",
    "astro": "^5.0.0",
    "astro-eslint-parser": ">=0.1.0",
    "benchmark": "^2.1.4",
    "chai": "^5.0.0",
    "env-cmd": "^10.1.0",
    "esbuild": "^0.24.0",
    "esbuild-register": "^3.3.3",
    "eslint": "^9.19.0",
    "eslint-config-prettier": "^10.0.0",
    "eslint-formatter-codeframe": "^7.32.1",
    "eslint-plugin-astro": "^1.0.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-jsdoc": "^50.6.3",
    "eslint-plugin-json-schema-validator": "^5.0.0",
    "eslint-plugin-jsonc": "^2.0.0",
    "eslint-plugin-jsx-a11y": "^6.5.1",
    "eslint-plugin-n": "^17.0.0",
    "eslint-plugin-node-dependencies": "^0.12.0",
    "eslint-plugin-prettier": "^5.0.0",
    "eslint-plugin-react": "^7.29.4",
    "eslint-plugin-regexp": "^2.0.0",
    "eslint-plugin-simple-import-sort": "^12.0.0",
    "eslint-plugin-svelte": "^3.0.0-0",
    "estree-walker": "^3.0.0",
    "globals": "^15.0.0",
    "locate-character": "^3.0.0",
    "magic-string": "^0.30.0",
    "mocha": "^11.0.0",
    "mocha-chai-jest-snapshot": "^1.1.3",
    "nyc": "^17.0.0",
    "prettier": "^3.0.0",
    "prettier-plugin-astro": "^0.14.0",
    "prettier-plugin-svelte": "^3.0.0",
    "string-replace-loader": "^3.0.3",
    "svelte": "^5.19.3",
    "tsup": "^8.0.0",
    "typescript": "~5.7.0",
    "typescript-eslint": "^8.21.0",
    "typescript-eslint-parser-for-extra-files": "^0.7.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
