{
  "name": "argv-flags",
  "version": "1.0.5",
  "description": "Schema-driven CLI flag parser with stable issue codes and machine-readable results.",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./schema/parse-result.schema.json": "./schema/parse-result.schema.json"
  },
  "files": [
    "CHANGELOG.md",
    "LICENSE",
    "README.md",
    "SECURITY.md",
    "CONTRIBUTING.md",
    "SUPPORT.md",
    "docs",
    "dist",
    "schema",
    "jsr.json"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "prepare": "npm run build",
    "examples:run": "node ./examples/run-all.mjs",
    "lint": "eslint .",
    "test": "npm run build && npm run lint && node --test",
    "check:fast": "npm run test && npm run docs:lint:jsr && npm run docs:test:jsr && npm run docs:quality:jsr && npm run examples:run",
    "check": "node ./scripts/verify-runtime-versions.js && node ./scripts/workflow-policy-check.mjs && node ./scripts/esm-only-guard.mjs && node ./scripts/docs-policy-check.mjs && npm run test && npm run docs:lint:jsr && npm run docs:test:jsr && npm run docs:quality:jsr && npm run examples:run",
    "docs:lint:jsr": "deno doc --lint src/index.ts",
    "docs:test:jsr": "deno test --doc --no-check src/index.ts",
    "docs:quality:jsr": "node ./scripts/docs-quality-jsr.mjs",
    "jsr:dry": "deno publish --dry-run --allow-dirty",
    "jsr:score": "node ./scripts/jsr-score-gate.mjs",
    "release:audit": "node ./scripts/release-audit.mjs",
    "release:notes:dry-run": "node ./scripts/release/render-notes.mjs --dry-run",
    "changelog:update:dry-run": "node ./scripts/release/update-changelog.mjs --dry-run"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Ismail-elkorchi/argv-flags.git"
  },
  "keywords": [
    "argv",
    "cli",
    "flags",
    "parser"
  ],
  "author": "Ismail El Korchi",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Ismail-elkorchi/argv-flags/issues"
  },
  "homepage": "https://github.com/Ismail-elkorchi/argv-flags#readme",
  "engines": {
    "node": ">=24"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/node": "^25.9.1",
    "@typescript-eslint/eslint-plugin": "^8.60.0",
    "@typescript-eslint/parser": "^8.60.0",
    "ajv": "^8.20.0",
    "eslint": "^10.4.0",
    "eslint-plugin-n": "^18.0.1",
    "eslint-plugin-promise": "^7.3.0",
    "eslint-plugin-security": "^4.0.0",
    "globals": "^17.6.0",
    "typescript": "^6.0.3"
  }
}
