{
  "name": "@umbrelladocs/rdformat-validator",
  "version": "1.0.1",
  "description": "Validate and fix Reviewdog Diagnostic Format (RD Format) - A comprehensive library and CLI tool for validating JSON data against the Reviewdog Diagnostic Format specification",
  "author": {
    "name": "Gaurav Nelson",
    "url": "https://github.com/UmbrellaDocs/rdformat-validator"
  },
  "maintainers": [
    {
      "name": "Gaurav Nelson"
    }
  ],
  "main": "dist/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "bin": {
    "rdformat-validator": "bin/rdformat-validator.js"
  },
  "scripts": {
    "build": "npm run build:cjs && npm run build:esm && npm run build:cli",
    "build:cjs": "tsc",
    "build:esm": "tsc -p tsconfig.esm.json && node scripts/fix-esm-imports.js",
    "build:cli": "npm run build:cjs && node scripts/prepare-cli.js",
    "prebuild": "rimraf dist",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:ci": "jest --ci --coverage --watchAll=false",
    "lint": "eslint src/**/*.ts --max-warnings 200",
    "lint:fix": "eslint src/**/*.ts --fix --max-warnings 200",
    "lint:strict": "eslint src/**/*.ts",
    "lint:ci": "eslint src/**/*.ts --config eslint.config.ci.js",
    "type-check": "tsc --noEmit",
    "build:check": "tsc --noEmit",
    "validate": "npm run type-check && npm run test",
    "validate:full": "npm run type-check && npm run lint && npm run test",
    "clean": "rimraf dist",
    "dev": "ts-node src/index.ts",
    "start": "node dist/index.js",
    "prepublishOnly": "npm run validate && npm run build",
    "postpublish": "echo 'Package published successfully!'",
    "preversion": "npm run validate",
    "postversion": "git push && git push --tags"
  },
  "keywords": [
    "reviewdog",
    "validator",
    "diagnostic",
    "format",
    "json",
    "linter",
    "cli",
    "rdformat",
    "validation",
    "typescript",
    "nodejs",
    "code-quality",
    "static-analysis",
    "json-schema"
  ],
  "categories": [
    "Linters",
    "Other"
  ],
  "engines": {
    "node": ">=14.0.0",
    "npm": ">=6.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/UmbrellaDocs/rdformat-validator.git"
  },
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/UmbrellaDocs"
  },
  "dependencies": {
    "commander": "^14.0.0"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/jest": "^30.0.0",
    "@types/node": "^26.0.1",
    "@typescript-eslint/eslint-plugin": "^8.62.1",
    "@typescript-eslint/parser": "^8.62.1",
    "eslint": "^10.0.1",
    "jest": "^30.4.2",
    "rimraf": "^6.1.3",
    "ts-jest": "^29.4.11",
    "ts-node": "^10.9.2",
    "typescript": "^6.0.3"
  },
  "license": "Apache-2.0",
  "files": [
    "dist/",
    "src/",
    "bin/",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "bugs": {
    "url": "https://github.com/UmbrellaDocs/rdformat-validator/issues"
  },
  "homepage": "https://github.com/UmbrellaDocs/rdformat-validator#readme"
}
