UNPKG

@odel/module-sdk

Version:

SDK for building Odel modules - MCP protocol over HTTP for Cloudflare Workers

75 lines (74 loc) 1.73 kB
{ "name": "@odel/module-sdk", "version": "0.0.3", "description": "SDK for building Odel modules - MCP protocol over HTTP for Cloudflare Workers", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./testing": { "types": "./dist/testing/index.d.ts", "default": "./dist/testing/index.js" } }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "test": "cd examples/hello-world && pnpm test", "test:watch": "cd examples/hello-world && pnpm test:watch", "prepublishOnly": "pnpm build", "clean": "rm -rf dist" }, "keywords": [ "odel", "mcp", "model-context-protocol", "module", "sdk", "cloudflare-workers", "typescript" ], "author": "Odel", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/odel-ai/module-sdk.git" }, "bugs": { "url": "https://github.com/odel-ai/module-sdk/issues" }, "homepage": "https://github.com/odel-ai/module-sdk#readme", "dependencies": { "zod": "^3.25.76", "zod-to-json-schema": "^3.24.6" }, "devDependencies": { "@cloudflare/workers-types": "^4.20250110.0", "typescript": "^5.9.2", "vitest": "~3.2.0" }, "peerDependencies": { "@cloudflare/workers-types": "^4.x", "@cloudflare/vitest-pool-workers": "^0.5.0 || ^0.10.0", "vitest": "^2.0.0 || ^3.0.0", "typescript": "^5.0.0" }, "peerDependenciesMeta": { "@cloudflare/vitest-pool-workers": { "optional": true }, "vitest": { "optional": true }, "typescript": { "optional": true } } }