{
  "name": "disk",
  "version": "0.8.22",
  "description": "Pure-JS client and CLI for Archil disks",
  "keywords": [
    "archil",
    "disk",
    "filesystem",
    "cli"
  ],
  "homepage": "https://archil.com",
  "license": "MIT",
  "repository": {
    "url": "https://github.com/archil-data/archil-sdk"
  },
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.mts",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./internal/tools": {
      "types": "./dist/internal/tools.d.mts",
      "import": "./dist/internal/tools.mjs",
      "require": "./dist/internal/tools.cjs"
    }
  },
  "bin": {
    "disk": "./dist/cli.mjs"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@archildata/api-types": "^0.0.4",
    "commander": "^14.0.3",
    "fast-xml-parser": "^5.7.0",
    "openapi-fetch": "^0.13.5",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@types/node": "^26.0.1",
    "tsdown": "^0.22.3",
    "typescript": "^6.0.3",
    "vitest": "^4.1.9"
  },
  "engines": {
    "node": ">= 22"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "typecheck": "tsc --noEmit",
    "test": "vitest run"
  }
}