{
  "name": "@happyvertical/smrt-cli",
  "version": "0.43.2",
  "description": "Developer CLI for SMRT framework - introspection, testing, and project management",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "smrt": "./bin/smrt.js",
    "smrt-cli": "./bin/smrt.js"
  },
  "files": [
    "bin",
    "dist",
    "scripts",
    "README.md",
    "CLAUDE.md",
    "AGENTS.md"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "dependencies": {
    "@happyvertical/ai": "^0.88.0",
    "@happyvertical/files": "^0.88.0",
    "@happyvertical/logger": "^0.88.0",
    "@happyvertical/sql": "^0.88.0",
    "@happyvertical/utils": "^0.88.0",
    "acorn": "^8.17.0",
    "fast-glob": "3.3.3",
    "tar": "^7.5.19",
    "@happyvertical/smrt-agents": "0.43.2",
    "@happyvertical/smrt-core": "0.43.2",
    "@happyvertical/smrt-config": "0.43.2",
    "@happyvertical/smrt-dev-mcp": "0.43.2",
    "@happyvertical/smrt-playground": "0.43.2",
    "@happyvertical/smrt-types": "0.43.2"
  },
  "devDependencies": {
    "@types/node": "24.13.2",
    "tsx": "^4.23.0",
    "typescript": "5.9.3",
    "vite": "8.1.4",
    "vite-plugin-dts": "4.5.4",
    "vitest": "4.1.10"
  },
  "keywords": [
    "smrt",
    "cli",
    "developer-tools",
    "introspection",
    "testing",
    "ai-agents"
  ],
  "author": "HappyVertical",
  "license": "MIT",
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/happyvertical/smrt.git",
    "directory": "packages/cli"
  },
  "scripts": {
    "build": "vite build",
    "build:watch": "vite build --watch",
    "clean": "rm -rf dist",
    "dev": "npm run build:watch",
    "test": "vitest run",
    "test:postgres": "node ../../scripts/run-with-ci-postgres.mjs -- pnpm exec vitest run src/commands/__tests__/db-migrate-uuid.test.ts src/commands/__tests__/db-migrate-force-postgres.test.ts src/commands/__tests__/sti-upgrade.test.ts",
    "test:watch": "vitest",
    "typecheck": "tsc -p tsconfig.typecheck.json",
    "cli": "tsx src/index.ts"
  }
}