{
  "name": "@czap/command",
  "version": "0.10.0",
  "description": "The shared command registry behind LiteShip's tooling: one source of command definitions that both the `czap` CLI and the MCP server project from.",
  "license": "MIT",
  "author": "Eassa Ayoub <eassa@heyoub.dev>",
  "repository": {
    "type": "git",
    "url": "https://github.com/freebatteryfactory/LiteShip",
    "directory": "packages/command"
  },
  "bugs": "https://github.com/freebatteryfactory/LiteShip/issues",
  "homepage": "https://github.com/freebatteryfactory/LiteShip#readme",
  "keywords": [
    "czap",
    "liteship",
    "cli",
    "mcp",
    "command-registry",
    "typescript"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "development": "./src/index.ts"
    },
    "./host": {
      "types": "./dist/host/index.d.ts",
      "import": "./dist/host/index.js",
      "development": "./src/host/index.ts"
    },
    "./host-browser": {
      "types": "./dist/host-browser/index.d.ts",
      "import": "./dist/host-browser/index.js",
      "development": "./src/host-browser/index.ts"
    },
    "./invariants": {
      "types": "./dist/commands/check-invariants-registry.d.ts",
      "import": "./dist/commands/check-invariants-registry.js",
      "development": "./src/commands/check-invariants-registry.ts"
    }
  },
  "files": [
    "dist",
    "src",
    "LICENSE"
  ],
  "dependencies": {
    "effect": ">=4.0.0-beta.32 <5",
    "@czap/core": "0.10.0",
    "@czap/assets": "0.10.0",
    "@czap/error": "0.10.0",
    "@czap/gauntlet": "0.10.0"
  },
  "engines": {
    "node": ">=22.13.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc"
  }
}