{
  "name": "@trazum/core",
  "version": "2.4.1",
  "description": "Trazum core: priced advisories for LLM prompts (caching, model tier, batching, schemas), plus deterministic trimming, token counting and pricing.",
  "license": "MIT",
  "author": "David Mu\u00f1oz Rey",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Davmunrey/Trazum.git",
    "directory": "packages/core"
  },
  "homepage": "https://trazum.vercel.app",
  "bugs": {
    "url": "https://github.com/Davmunrey/Trazum/issues"
  },
  "keywords": [
    "prompt",
    "llm",
    "tokens",
    "cost",
    "optimizer",
    "claude",
    "openai"
  ],
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./node": {
      "types": "./dist/node.d.ts",
      "default": "./dist/node.js"
    }
  },
  "files": [
    "dist",
    "src",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "test": "npm run build && node --test test/*.test.js",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "prepublishOnly": "npm run build && npm test"
  },
  "devDependencies": {
    "@types/node": "^26.4.0",
    "typescript": "^7.0.2"
  },
  "engines": {
    "node": ">=20"
  }
}
