{
  "name": "meow-tool",
  "version": "0.2.1",
  "description": "Multi-provider LLM router exposing OpenAI/Anthropic compatible APIs, with smart mode routing, SSE streaming, session persistence, token analytics, and unified Agent/Skill/MCP orchestration, served via TUI CLI and Web UI",
  "type": "module",
  "license": "MIT",
  "author": "naclnezn",
  "homepage": "https://github.com/naclnezn/meow-tool",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/naclnezn/meow-tool.git"
  },
  "bugs": {
    "url": "https://github.com/naclnezn/meow-tool/issues"
  },
  "keywords": [
    "llm",
    "router",
    "openai",
    "anthropic",
    "mcp",
    "cli",
    "tui",
    "ink",
    "proxy",
    "ai"
  ],
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "start": "node --import tsx src/bin/meow.ts dev",
    "cli": "node --import tsx src/bin/meow.ts cli",
    "dev": "node --import tsx src/bin/meow.ts dev",
    "build": "tsc && cd web && npm run build && cd .. && node scripts/copy-web.mjs",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "prepublishOnly": "node scripts/prepublish.mjs",
    "postinstall": "node scripts/postinstall.mjs"
  },
  "bin": {
    "meow": "dist/bin/meow.js"
  },
  "files": [
    "dist/",
    "scripts/postinstall.mjs",
    "scripts/prepublish.mjs",
    "scripts/copy-web.mjs",
    "LICENSE",
    "README.md"
  ],
  "dependencies": {
    "@aws-sdk/client-s3": "^3.1080.0",
    "@hono/node-server": "^1.13.7",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "better-sqlite3": "^12.11.1",
    "cli-cursor": "^5.0.0",
    "hono": "^4.6.14",
    "ink": "^5.2.1",
    "ink-select-input": "^6.2.0",
    "ink-spinner": "^5.0.0",
    "ink-text-input": "^6.0.0",
    "react": "^18.3.1",
    "tsx": "^4.19.2",
    "zod": "^3.24.1"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.13",
    "@types/node": "^22.10.2",
    "@types/react": "^18.3.31",
    "sass": "^1.101.0",
    "typescript": "^5.7.2",
    "vitest": "^2.1.8"
  },
  "allowScripts": {
    "esbuild@0.28.1": true,
    "esbuild@0.21.5": true
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}
