{
  "name": "@tikoci/quickchr",
  "version": "0.4.6",
  "description": "CLI and library to download, launch, and manage MikroTik CHR virtual machines via QEMU",
  "module": "src/index.ts",
  "main": "src/index.ts",
  "types": "src/index.ts",
  "bin": {
    "quickchr": "src/cli/index.ts"
  },
  "exports": {
    ".": {
      "import": "./src/index.ts",
      "types": "./src/index.ts"
    }
  },
  "files": [
    "src",
    "README.md",
    "DESIGN.md",
    "MANUAL.md"
  ],
  "scripts": {
    "check": "bun run lint:biome && bun run lint:typecheck && bun run lint:markdown && bun run lint:cspell && bun run lint:examples && bun run lint:shell",
    "lint": "biome check . && tsc --noEmit",
    "lint:biome": "biome check .",
    "lint:typecheck": "tsc --noEmit",
    "lint:markdown": "bunx markdownlint-cli2 '**/*.md'",
    "lint:cspell": "cspell lint . --no-progress",
    "lint:examples": "bun run scripts/validate-examples.ts",
    "lint:shell": "sh scripts/lint-shell.sh",
    "test": "bun test test/unit/",
    "test:examples": "bun test examples/",
    "smoke:examples": "QUICKCHR_INTEGRATION=1 EXAMPLES_SMOKE=1 bun test test/integration/examples-smoke.test.ts",
    "test:integration": "QUICKCHR_INTEGRATION=1 bun test test/integration/",
    "test:all": "QUICKCHR_INTEGRATION=1 bun test test/unit/ test/integration/ examples/",
    "dev": "bun run src/cli/index.ts",
    "install:deps:ubuntu": "sudo apt-get --yes install qemu-system-x86 qemu-system-arm qemu-efi-aarch64 qemu-utils socat && curl -fsSL https://bun.sh/install | bash"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.10",
    "@types/bun": "^1.3.11",
    "cspell": "^10.0.0",
    "markdownlint-cli2": "^0.21.0"
  },
  "dependencies": {
    "@clack/prompts": "^0.11.0",
    "fflate": "^0.8.2",
    "typescript": "^5"
  },
  "private": false,
  "type": "module",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/tikoci/quickchr.git"
  },
  "keywords": [
    "mikrotik",
    "routeros",
    "chr",
    "qemu",
    "virtualization",
    "network-testing"
  ]
}
