{
  "name": "@vishnu-vashishth/llm-sdk",
  "version": "1.2.0",
  "description": "A standalone, type-safe LLM SDK with multi-provider support, retry logic, context management, and intelligent tokenization.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsc",
    "test": "vitest",
    "test:ci": "vitest run --coverage",
    "lint": "eslint 'src/**/*.{js,ts}'",
    "lint:fix": "eslint 'src/**/*.{js,ts}' --fix",
    "format": "prettier --write 'src/**/*.{js,ts,json,md}'",
    "format:check": "prettier --check 'src/**/*.{js,ts,json,md}'",
    "docs": "typedoc --out docs/api src/index.ts",
    "release:patch": "npm version patch && git push --follow-tags",
    "release:minor": "npm version minor && git push --follow-tags",
    "release:major": "npm version major && git push --follow-tags",
    "prepublishOnly": "npm run lint && npm test -- --run && npm run build"
  },
  "keywords": [
    "llm",
    "sdk",
    "openai",
    "anthropic",
    "friendli",
    "novita",
    "ai",
    "chatbot",
    "tokenization",
    "context-management",
    "retry",
    "abort",
    "typescript",
    "type-safe",
    "prompt-management"
  ],
  "author": "Vishnu Vashishth",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "https://github.com/Vishnu-vashishth/llm-sdk.git"
  },
  "bugs": {
    "url": "https://github.com/Vishnu-vashishth/llm-sdk/issues"
  },
  "homepage": "https://github.com/Vishnu-vashishth/llm-sdk#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@tmfi/tokenizers": "0.20.0-dev0",
    "axios": "^1.6.2",
    "llama-tokenizer-js": "^1.2.2",
    "mustache": "^4.2.0",
    "nunjucks": "^3.2.4",
    "zod": "^4.1.12"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.1",
    "@types/mustache": "^4.2.5",
    "@types/node": "^20.19.25",
    "@types/nunjucks": "^3.2.6",
    "@typescript-eslint/eslint-plugin": "^8.47.0",
    "@typescript-eslint/parser": "^8.47.0",
    "@vitest/coverage-v8": "^4.0.13",
    "eslint": "^9.39.1",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.4",
    "prettier": "^3.6.2",
    "typedoc": "^0.28.15",
    "typescript": "^5.7.3",
    "vitest": "^4.0.13"
  }
}
