{
  "name": "dir-archiver",
  "version": "3.0.2",
  "description": "Deterministic directory archiving and extraction over zip, tar, and layered compression.",
  "license": "MIT",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "bin": {
    "dir-archiver": "dist/cli.js"
  },
  "files": [
    "LICENSE",
    "README.md",
    "CHANGELOG.md",
    "CONTRACT.md",
    "SECURITY.md",
    "CONTRIBUTING.md",
    "SUPPORT.md",
    "docs",
    "dist",
    "jsr.json"
  ],
  "keywords": [
    "archive",
    "bytefold",
    "dir-archiver",
    "compression",
    "cli",
    "esm",
    "jsr",
    "npm",
    "deno",
    "bun",
    "directory"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/Ismail-elkorchi/dir-archiver"
  },
  "author": {
    "name": "Ismail El Korchi",
    "email": "ismail.elkorchi@gmail.com",
    "url": "https://ismailelkorchi.com"
  },
  "bugs": "https://github.com/Ismail-elkorchi/dir-archiver/issues",
  "homepage": "https://github.com/Ismail-elkorchi/dir-archiver",
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "examples:run": "node ./examples/run-all.mjs",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "lint": "npm run typecheck && eslint . --max-warnings=0",
    "docs:lint:jsr": "deno doc --lint --sloppy-imports src/index.ts",
    "docs:test:jsr": "node ./scripts/jsr-docs-quality.mjs",
    "docs:quality:jsr": "npm run docs:lint:jsr && npm run docs:test:jsr",
    "release:notes:dry-run": "node ./scripts/release-notes.mjs --dry-run",
    "changelog:update:dry-run": "node ./scripts/changelog-update.mjs --dry-run",
    "test": "npm run build && node --test test/api-snapshot.test.mjs test/operations.test.mjs test/cli.test.mjs test/cli-docs-drift.test.mjs test/matrix-node.test.mjs",
    "check:fast": "npm run lint && npm run docs:quality:jsr && npm run test && npm run examples:run",
    "test:security": "npm run build && node --test test/security.test.mjs",
    "check": "node ./scripts/verify-runtime-versions.mjs && node ./scripts/workflow-policy-check.mjs && node ./scripts/esm-only-guard.mjs && node ./scripts/docs-policy-check.mjs && npm run lint && npm run docs:quality:jsr && npm run test && npm run examples:run && npm run test:security && npm run test:runtimes",
    "deps:fresh": "node ./scripts/direct-runtime-deps-freshness.mjs",
    "test:deno": "npm run build && deno run --allow-read --allow-write --allow-env --allow-sys test/deno-smoke.mjs",
    "test:bun": "npm run build && bun test/bun-smoke.mjs",
    "test:runtimes": "npm run test:deno && npm run test:bun && npm run test:runtimes:fingerprints",
    "test:runtimes:fingerprints": "npm run build && node ./scripts/compare-runtime-fingerprints.mjs",
    "jsr:score": "node ./scripts/jsr-score-gate.mjs",
    "release:audit": "node ./scripts/release-audit.mjs",
    "test:downstream:released": "npm run test",
    "test:downstream:main": "npm install --no-save github:Ismail-elkorchi/bytefold#main github:Ismail-elkorchi/argv-flags#main && npm run test",
    "jsr:dry": "deno publish --dry-run --allow-dirty --sloppy-imports",
    "prepack": "npm run build"
  },
  "engines": {
    "node": ">=24"
  },
  "dependencies": {
    "@ismail-elkorchi/bytefold": "^0.8.1",
    "argv-flags": "^1.0.5"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/node": "^25.9.3",
    "@typescript-eslint/eslint-plugin": "^8.61.1",
    "@typescript-eslint/parser": "^8.61.1",
    "eslint": "^10.5.0",
    "globals": "^17.6.0",
    "typescript": "^6.0.3",
    "yauzl": "^3.4.0"
  }
}
