{
  "name": "fewtok",
  "version": "0.0.1",
  "description": "Token-compression proxy for Claude Code \u2014 paths, boilerplate, file-read dedup.",
  "keywords": [
    "claude",
    "claude-code",
    "anthropic",
    "tokens",
    "proxy",
    "compression"
  ],
  "license": "MIT",
  "bin": {
    "fewtok": "./bin/fewtok",
    "ft": "./bin/fewtok",
    "cld": "./bin/cld"
  },
  "files": [
    "bin",
    "src",
    "dist",
    "README.md",
    "LICENSE"
  ],
  "type": "module",
  "module": "src/index.ts",
  "scripts": {
    "test": "bun test",
    "build": "bun build src/cli/index.ts --target=bun --outfile=dist/cli.js && bun build src/proxy/handler.ts --target=bun --outfile=dist/proxy-handler.js",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    "@anthropic-ai/tokenizer": "^0.0.4",
    "@iarna/toml": "2.2.5",
    "comment-json": "5.0.0",
    "semver": "7.8.0",
    "tiktoken": "1.0.22",
    "yaml": "2.9.0"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/semver": "7.7.1",
    "typescript": "^5.5.0"
  },
  "engines": {
    "bun": ">=1.1.0"
  }
}
