{
  "name": "@kya-os/cli",
  "version": "1.0.0",
  "description": "CLI for KYA-OS MCP-I setup and management",
  "keywords": [
    "cli",
    "kya-os",
    "mcp-i",
    "ai-agents",
    "identity"
  ],
  "homepage": "https://github.com/kya-os/cli",
  "repository": {
    "type": "git",
    "url": "https://github.com/kya-os/cli.git"
  },
  "license": "MIT",
  "author": "Dylan Hobbs <dylan.hobbs@vouched.id>",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "kya-os": "./dist/index.js"
  },
  "files": [
    "dist",
    "templates"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.build.json && mv dist/index.prod.js dist/index.js && mv dist/index.prod.d.ts dist/index.d.ts && rm -f dist/index.prod.* && node scripts/fix-esm-imports.js && chmod +x dist/index.js",
    "dev": "tsx src/index.ts",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build",
    "test": "vitest",
    "test:watch": "vitest watch",
    "test:coverage": "vitest --coverage",
    "demo": "tsx src/index.ts demo",
    "demo:init": "tsx src/index.ts demo --init",
    "demo:ui": "tsx src/index.ts demo --ui",
    "demo:effects": "tsx src/index.ts demo --effects",
    "demo:security": "tsx src/index.ts demo --security",
    "demo:fast": "tsx src/index.ts demo --init --fast"
  },
  "dependencies": {
    "@kya-os/mcp-i": "^0.1.0-alpha.3.8",
    "boxen": "^8.0.1",
    "chalk": "^5.3.0",
    "cli-table3": "^0.6.5",
    "commander": "^11.0.0",
    "figlet": "^1.8.0",
    "gradient-string": "^3.0.0",
    "inquirer": "^9.2.23",
    "node-fetch": "^3.3.2",
    "open": "^10.1.2",
    "ora": "^8.0.1",
    "terminal-image": "^3.1.1",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@types/figlet": "^1.7.0",
    "@types/inquirer": "^9.0.0",
    "@types/node": "^20.0.0",
    "@types/node-fetch": "^2.6.11",
    "@vitest/coverage-v8": "^1.2.0",
    "tsx": "^4.0.0",
    "typescript": "^5.0.0",
    "vitest": "^1.2.0"
  },
  "engines": {
    "node": ">=16.0.0"
  }
}
