{
  "name": "commandstruct",
  "version": "1.1.2",
  "description": "Type safe and modular CLIs with Sade",
  "private": false,
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "keywords": [
    "command",
    "cli",
    "sade",
    "DI",
    "typescript"
  ],
  "author": "Eric Afes <eriicafes@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/eriicafes/commandstruct.git"
  },
  "bugs": {
    "url": "https://github.com/eriicafes/commandstruct/issues"
  },
  "homepage": "https://github.com/eriicafes/commandstruct#readme",
  "devDependencies": {
    "@changesets/cli": "^2.29.8",
    "@types/node": "^25.0.3",
    "@vitest/coverage-v8": "^4.0.16",
    "tsdown": "^0.18.3",
    "typescript": "^5.9.3",
    "vitest": "^4.0.16"
  },
  "peerDependencies": {
    "getbox": ">= 2.0.0 <3.0.0",
    "sade": ">= 1.8.1"
  },
  "scripts": {
    "build": "tsc && tsdown src/index.ts --format esm,cjs",
    "release": "pnpm run build && changeset publish",
    "watch": "vitest",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage"
  }
}