{
  "name": "taste",
  "version": "0.5.1",
  "description": "Taste CLI to manage CommandCode taste",
  "type": "module",
  "main": "dist/index.mjs",
  "bin": {
    "taste": "dist/index.mjs"
  },
  "keywords": [
    "taste",
    "ai",
    "coding-agent",
    "langbase",
    "command-code",
    "developer-tools",
    "cli"
  ],
  "author": {
    "name": "Command Code",
    "url": "https://commandcode.ai/docs"
  },
  "license": "Apache-2.0",
  "files": [
    "dist",
    "README.md"
  ],
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "command-code": "latest",
    "commander": "^14.0.0",
    "find-up": "^7.0.0"
  },
  "devDependencies": {
    "@types/node": "^24.2.0",
    "tsup": "^8.5.0",
    "typescript": "^5.9.2"
  },
  "scripts": {
    "build": "tsup",
    "build:obfuscated": "tsup --config tsup.config.obfuscated.ts",
    "build:balanced": "tsup --config tsup.config.balanced.ts",
    "dev": "tsup --watch",
    "typecheck": "tsc --noEmit",
    "publish:prod": "pnpm run build:obfuscated && npm publish --access public"
  }
}