UNPKG

@utcp/sdk

Version:
56 lines (55 loc) 1.16 kB
{ "name": "@utcp/sdk", "version": "1.1.0", "description": "Universal Tool Calling Protocol SDK", "main": "dist/index.cjs", "module": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "license": "MPL-2.0", "author": "UTCP Contributors", "repository": { "type": "git", "url": "https://github.com/universal-tool-calling-protocol/typescript-utcp", "directory": "packages/core" }, "keywords": [ "utcp", "universal-tool-calling-protocol", "tools", "api", "typescript", "tool calling", "mcp", "agent", "ai", "llm" ], "publishConfig": { "access": "public" }, "scripts": { "prebuild": "rm -rf dist || rmdir /s /q dist || true", "build": "tsup && node scripts/replace-version.js" }, "files": [ "dist", "README.md" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs", "default": "./dist/index.js" } }, "dependencies": { "dotenv": "^17.2.1", "zod": "^3.23.8" }, "devDependencies": { "bun-types": "latest", "typescript": "^5.0.0" } }