{
  "name": "@thingd/cli",
  "version": "0.68.6",
  "description": "CLI, Interactive TUI Dashboard, and MCP server for thingd — a fast object-first data engine for applications and AI agents.",
  "type": "module",
  "homepage": "https://engine.thingd.cloud",
  "author": "Sayan Mohsin",
  "license": "Apache-2.0",
  "keywords": [
    "thingd",
    "cli",
    "mcp",
    "mcp-server",
    "ai-agents",
    "dashboard",
    "tui",
    "data-engine",
    "queue",
    "local-first"
  ],
  "publishConfig": {
    "access": "public"
  },
  "bin": {
    "thingd": "./dist/index.js"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sayanmohsin/thingd.git"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "cli-table3": "^0.6.5",
    "picocolors": "^1.1.1",
    "zod": "^4.4.3",
    "@thingd/sdk": "0.68.6"
  },
  "engines": {
    "node": ">=24.0.0"
  },
  "scripts": {
    "build": "pnpm --filter frontend build && tsc -p tsconfig.json && node -e \"fs.mkdirSync('dist/dashboard', { recursive: true }); fs.cpSync('src/dashboard/public', 'dist/dashboard/public', { recursive: true })\"",
    "test": "pnpm build && node --test test/*.test.mjs"
  }
}