{
  "name": "@skhema/cli",
  "version": "0.3.2",
  "description": "Skhema CLI - Authentication and AI skills management for agent platforms",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "skhema": "./bin/skhema.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "bin",
    "skills"
  ],
  "scripts": {
    "dev": "tsc --watch",
    "build": "tsc",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "clean": "rm -rf dist node_modules skills",
    "clean:dist": "rm -rf dist",
    "sync-skills": "tsx scripts/sync-skills.ts",
    "prebuild": "npm run clean:dist && npm run sync-skills",
    "prepack": "npm run sync-skills",
    "check": "npm run typecheck && npm run lint && npm run format:check",
    "check:fix": "npm run format && npm run lint:fix",
    "prepublishOnly": "npm run build",
    "postinstall": "node dist/postinstall.js || true"
  },
  "dependencies": {
    "chalk": "^5.3.0",
    "commander": "^12.0.0",
    "ora": "^8.0.0",
    "@skhema/agent-sdk": "0.1.4",
    "@skhema/sdk": "0.1.3"
  },
  "devDependencies": {
    "@skhema/linter": "2.2.0",
    "@skhema/prettier-config": "1.0.0",
    "@types/node": "^22.0.0",
    "eslint": "^9.0.0",
    "prettier": "^3.0.0",
    "prettier-plugin-organize-imports": "^4.3.0",
    "tsx": "^4.7.0",
    "typescript": "^5.0.0",
    "vitest": "^4.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "homepage": "https://skhema.com/docs/api"
}
