{
  "name": "@bugron/validate-dependabot-yaml",
  "version": "0.3.3",
  "description": "CLI for validating Dependabot v2 YAML configuration files",
  "main": "dist/run.js",
  "type": "module",
  "bin": {
    "@bugron/validate-dependabot-yaml": "dist/run.js"
  },
  "files": [
    "dist"
  ],
  "publishConfig": {
    "provenance": true,
    "access": "public"
  },
  "engines": {
    "node": ">=20"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bugron/validate-dependabot-cli.git"
  },
  "keywords": [
    "actions",
    "node",
    "setup"
  ],
  "author": "",
  "license": "MIT",
  "dependencies": {
    "ajv": "^6.12.6",
    "node-fetch": "2.6.7",
    "yaml": "^2.8.1"
  },
  "devDependencies": {
    "@changesets/cli": "^2.29.7",
    "@types/node": "^20.19.17",
    "@types/node-fetch": "^2.6.13",
    "@typescript-eslint/parser": "^7.18.0",
    "@vercel/ncc": "^0.38.4",
    "@vitest/coverage-v8": "^3.2.4",
    "eslint": "^8.57.1",
    "eslint-plugin-github": "^4.10.2",
    "eslint-plugin-jest": "^28.14.0",
    "eslint-plugin-prettier": "^5.5.4",
    "js-yaml": "^4.1.0",
    "meow": "^13.2.0",
    "prettier": "3.6.2",
    "release-it": "^17.11.0",
    "ts-jest": "^29.4.4",
    "tsdown": "^0.15.2",
    "typescript": "^5.9.2",
    "vitest": "^3.2.4"
  },
  "scripts": {
    "build": "tsc",
    "bundle": "tsdown",
    "dev": "tsdown --watch",
    "format": "prettier --write **/*.ts",
    "format-check": "prettier --check **/*.ts",
    "lint": "eslint src/**/*.ts",
    "test:watch": "vitest",
    "test:coverage": "pnpm test -- --coverage",
    "test": "vitest run",
    "build_test": "tsc && pnpm test",
    "all": "pnpm build && pnpm format-check && pnpm lint && pnpm test && pnpm bundle",
    "release:ci": "pnpm all && changeset publish",
    "release:local": "pnpm all && changeset && changeset version && changeset publish"
  }
}