{
  "name": "@agentic/core",
  "version": "8.4.4",
  "description": "Agentic AI utils which work with any LLM and TypeScript AI SDK.",
  "author": "Travis Fischer <travis@transitivebullsh.it>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/transitive-bullshit/agentic.git",
    "directory": "stdlib/core"
  },
  "type": "module",
  "sideEffects": false,
  "source": "./src/index.ts",
  "types": "./dist/index.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "dedent": "^1.6.0",
    "delay": "^6.0.0",
    "jsonrepair": "^3.12.0",
    "ky": "^1.8.1",
    "openai-zod-to-json-schema": "^1.1.1",
    "p-throttle": "6.2.0",
    "type-fest": "^4.41.0",
    "zod-validation-error": "4.0.0-beta.1"
  },
  "peerDependencies": {
    "zod": "^3.25.67"
  },
  "devDependencies": {
    "openai-fetch": "^3.4.2"
  },
  "keywords": [
    "agentic",
    "ai",
    "sdk",
    "openai",
    "llm",
    "tools",
    "stdlib",
    "standard",
    "library",
    "functions",
    "typescript",
    "agent",
    "agents"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "clean": "del dist",
    "test": "run-s test:*",
    "test:typecheck": "tsc --noEmit",
    "test:unit": "vitest run"
  }
}