{
  "name": "eslint-plugin-postgresql",
  "version": "0.22.2",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "license": "MIT",
  "author": "baseballyama",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/baseballyama/eslint-plugin-postgresql.git"
  },
  "homepage": "https://github.com/baseballyama/eslint-plugin-postgresql",
  "bugs": "https://github.com/baseballyama/eslint-plugin-postgresql/issues",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "publishConfig": {
    "provenance": true
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0.7.0",
    "@changesets/cli": "^2.31.0",
    "@types/node": "^24.13.2",
    "@vitest/coverage-v8": "^4.1.9",
    "knip": "^6.18.0",
    "oxlint": "^1.71.0",
    "prettier": "^3.8.4",
    "publint": "^0.3.21",
    "rolldown": "^1.1.2",
    "typescript": "^6.0.3",
    "vitest": "^4.1.9",
    "yaml": "^2.9.0"
  },
  "peerDependencies": {
    "eslint": "^8.57.1 || ^9.0.0 || ^10.0.0"
  },
  "dependencies": {
    "libpg-query": "^17.7.3",
    "postgresql-eslint-parser": "^0.5.4"
  },
  "scripts": {
    "build": "pnpm clean && pnpm build:js && pnpm build:types",
    "build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly",
    "build:js": "rolldown --config rolldown.config.js",
    "clean": "rm -rf dist",
    "create-rule": "node scripts/create-rule.js",
    "generate-pg-keywords": "node scripts/generate-pg-keywords.js",
    "format:check": "prettier --check .",
    "format:fix": "prettier --write .",
    "type:check": "tsc --noEmit",
    "lint:check": "oxlint -c=.oxlintrc.json",
    "lint:fix": "oxlint --fix -c=.oxlintrc.json",
    "test": "vitest run --silent=false",
    "test:watch": "vitest --silent=false",
    "publint": "publint",
    "knip": "knip",
    "check:all": "pnpm format:check && pnpm type:check && pnpm lint:check && pnpm build && pnpm publint && pnpm knip",
    "test:all": "pnpm format:check && pnpm type:check && pnpm lint:check && pnpm test && pnpm build && pnpm publint && pnpm knip",
    "update-fixtures": "UPDATE_FIXTURES=true vitest run && pnpm format:fix",
    "update:version": "changeset version",
    "release": "changeset publish"
  }
}