{
    "name": "march-ai-sdk",
    "version": "0.5.1",
    "description": "TypeScript SDK for building AI agents in the March AI platform",
    "type": "module",
    "main": "./dist/index.js",
    "module": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "exports": {
        ".": {
            "import": "./dist/index.js",
            "types": "./dist/index.d.ts"
        },
        "./extensions/langgraph": {
            "import": "./dist/extensions/langgraph.js",
            "types": "./dist/extensions/langgraph.d.ts"
        },
        "./extensions/vercel-ai": {
            "import": "./dist/extensions/vercel-ai.js",
            "types": "./dist/extensions/vercel-ai.d.ts"
        }
    },
    "files": [
        "dist",
        "src"
    ],
    "publishConfig": {
        "access": "public"
    },
    "scripts": {
        "build": "tsup",
        "dev": "tsup --watch",
        "test": "vitest run",
        "test:watch": "vitest",
        "typecheck": "tsc --noEmit",
        "lint": "eslint src",
        "clean": "rm -rf dist",
        "check-secrets": "tsx scripts/check-secrets.ts",
        "prepublishOnly": "npm run check-secrets && npm run build && npm run test"
    },
    "dependencies": {
        "@grpc/grpc-js": "^1.12.0",
        "@grpc/proto-loader": "^0.7.13",
        "zod": "^3.24.1"
    },
    "peerDependencies": {
        "@langchain/langgraph-checkpoint": ">=0.0.13",
        "ai": ">=3.0.0"
    },
    "peerDependenciesMeta": {
        "@langchain/langgraph-checkpoint": {
            "optional": true
        },
        "ai": {
            "optional": true
        }
    },
    "devDependencies": {
        "@types/node": "^22.10.7",
        "eslint": "^9.18.0",
        "tsup": "^8.3.5",
        "tsx": "^4.19.2",
        "typescript": "^5.7.3",
        "vitest": "^2.1.8"
    },
    "engines": {
        "node": ">=18"
    },
    "keywords": [
        "march",
        "agent",
        "ai",
        "sdk",
        "langchain",
        "langgraph",
        "vercel-ai",
        "streaming",
        "kafka",
        "grpc"
    ],
    "author": "March Health",
    "license": "MIT"
}
