{
  "name": "eslint-plugin-github-action",
  "type": "module",
  "version": "0.3.0",
  "description": "Rules for consistent, readable, and valid GitHub Actions workflow files.",
  "keywords": [
    "eslint",
    "eslint-plugin",
    "github-action"
  ],
  "license": "MIT",
  "author": {
    "name": "ntnyq",
    "email": "ntnyq13@gmail.com"
  },
  "homepage": "https://github.com/ntnyq/eslint-plugin-github-action#readme",
  "repository": {
    "type": "git",
    "url": "ntnyq/eslint-plugin-github-action"
  },
  "bugs": {
    "url": "https://github.com/ntnyq/eslint-plugin-github-action/issues"
  },
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "peerDependencies": {
    "eslint": "^9.5.0 || ^10.0.0"
  },
  "dependencies": {
    "@eslint/core": "^1.2.1",
    "@ntnyq/utils": "^0.15.0",
    "@types/json-schema": "^7.0.15",
    "uncase": "^0.2.0",
    "yaml-eslint-parser": "^2.0.0"
  },
  "devDependencies": {
    "@ntnyq/eslint-config": "^6.1.5",
    "@types/node": "^25.9.3",
    "@typescript/native-preview": "^7.0.0-dev.20260614.1",
    "@vitest/coverage-v8": "^4.1.8",
    "bumpp": "^11.1.0",
    "eslint": "^10.5.0",
    "eslint-plugin-eslint-plugin": "^7.4.0",
    "eslint-vitest-rule-tester": "^3.1.0",
    "husky": "^9.1.7",
    "nano-staged": "^1.0.2",
    "npm-run-all2": "^9.0.2",
    "oxfmt": "^0.54.0",
    "tinyglobby": "^0.2.17",
    "tsdown": "^0.22.2",
    "typescript": "^6.0.3",
    "vitest": "^4.1.8",
    "eslint-plugin-github-action": "0.3.0"
  },
  "engines": {
    "node": "^22.13.0 || >=24"
  },
  "nano-staged": {
    "*.{js,ts,mjs,tsx,vue,svg,md,yml,yaml,json}": "eslint --fix",
    "*": "oxfmt --no-error-on-unmatched-pattern"
  },
  "scripts": {
    "build": "tsdown",
    "coverage": "vitest --coverage",
    "deploy": "run-s build docs:build",
    "dev": "tsdown --watch",
    "docs:build": "pnpm -C docs run build",
    "docs:dev": "pnpm -C docs run dev",
    "format": "oxfmt",
    "format:check": "oxfmt --check",
    "lint": "eslint",
    "release": "run-s release:check release:version",
    "release:check": "run-s format:check lint typecheck test",
    "release:version": "bumpp",
    "test": "vitest",
    "typecheck": "tsgo --noEmit"
  }
}