{
  "name": "recursive-llm-ts",
  "version": "5.2.10",
  "description": "TypeScript bridge for recursive-llm: Recursive Language Models for unbounded context processing with structured outputs",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/cjs/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/cjs/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "default": "./dist/cjs/index.js"
    }
  },
  "files": [
    "dist/cjs",
    "dist/esm",
    "go/cmd",
    "go/go.mod",
    "go/go.sum",
    "go/rlm/*.go",
    "!go/rlm/*_test.go",
    "scripts/build-go-binary.js"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && node scripts/post-build.js",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:esm": "tsc -p tsconfig.esm.json",
    "postinstall": "node scripts/build-go-binary.js",
    "prepublishOnly": "npm run build",
    "release": "./scripts/release.sh",
    "start": "ts-node test/test.ts",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit"
  },
  "keywords": [
    "llm",
    "ai",
    "recursive",
    "context",
    "nlp",
    "language-model",
    "structured-output",
    "zod",
    "schema",
    "extraction",
    "file-storage",
    "s3",
    "minio",
    "streaming",
    "caching",
    "retry",
    "resilience",
    "opentelemetry",
    "observability",
    "batch",
    "typescript"
  ],
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/howlerops/recursive-llm-ts.git"
  },
  "bugs": {
    "url": "https://github.com/howlerops/recursive-llm-ts/issues"
  },
  "homepage": "https://github.com/howlerops/recursive-llm-ts#readme",
  "dependencies": {
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@types/node": "^20.11.19",
    "dotenv": "^16.4.5",
    "ts-node": "^10.9.2",
    "typescript": "^5.3.3",
    "vitest": "^4.0.18"
  },
  "peerDependencies": {
    "@aws-sdk/client-s3": "^3.0.0"
  },
  "peerDependenciesMeta": {
    "@aws-sdk/client-s3": {
      "optional": true
    }
  },
  "optionalDependencies": {
    "@recursive-llm/darwin-arm64": "5.2.10",
    "@recursive-llm/darwin-x64": "5.2.10",
    "@recursive-llm/linux-x64": "5.2.10",
    "@recursive-llm/linux-arm64": "5.2.10",
    "@recursive-llm/win32-x64": "5.2.10"
  }
}
