{
  "name": "@mmnto/cli",
  "version": "1.120.0",
  "description": "Totem: local-first toolkit that keeps AI-agent work queryable, enforceable, and derivable as plain files in your codebase",
  "type": "module",
  "engines": {
    "node": ">=24"
  },
  "bin": {
    "totem": "./dist/index.js"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "dependencies": {
    "@clack/prompts": "^1.1.0",
    "commander": "^13.1.0",
    "cross-spawn": "^7.0.6",
    "dotenv": "^16.4.0",
    "jiti": "^2.4.0",
    "ora": "^9.3.0",
    "picocolors": "^1.1.1",
    "smol-toml": "^1.6.1",
    "yaml": "^2.4.0",
    "zod": "^3.24.0",
    "@mmnto/totem": "1.120.0"
  },
  "devDependencies": {
    "@anthropic-ai/sdk": "^0.98.0",
    "@google/genai": "^2.6.0",
    "@types/cross-spawn": "^6.0.6",
    "@types/node": "^22.0.0",
    "esbuild": "^0.28.0",
    "openai": "^4.77.0",
    "typescript": "^5.7.0",
    "vitest": "^4.0.18"
  },
  "peerDependencies": {
    "@anthropic-ai/sdk": ">=0.50.0",
    "@google/genai": ">=2.0.0",
    "openai": ">=4.0.0"
  },
  "peerDependenciesMeta": {
    "@anthropic-ai/sdk": {
      "optional": true
    },
    "@google/genai": {
      "optional": true
    },
    "openai": {
      "optional": true
    }
  },
  "files": [
    "dist"
  ],
  "license": "Apache-2.0",
  "author": "mmnto-ai",
  "repository": {
    "type": "git",
    "url": "https://github.com/mmnto-ai/totem.git",
    "directory": "packages/cli"
  },
  "homepage": "https://github.com/mmnto-ai/totem",
  "bugs": {
    "url": "https://github.com/mmnto-ai/totem/issues"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "scripts": {
    "build": "tsc",
    "build:lite": "node build/esbuild-lite.mjs",
    "dev": "tsc --watch",
    "clean": "rm -rf dist",
    "lint": "eslint src/",
    "test": "vitest run"
  }
}