Files
Alem Tuzlak 68f9b8ad45 feat(examples): add runtime adapter examples for Express, Hono, Node, Deno, Elysia, and CF Workers
Example projects demonstrating the new fetch-based runtime adapters
across six server frameworks/runtimes.
2026-04-03 18:41:29 +02:00

19 lines
440 B
JSON

{
"name": "@copilotkit/example-runtime-elysia",
"version": "0.0.1",
"private": true,
"scripts": {
"example-dev": "bun run --watch src/index.ts",
"example-build": "bun build src/index.ts --outdir dist",
"example-start": "bun dist/index.js"
},
"dependencies": {
"@copilotkit/runtime": "workspace:^",
"elysia": "^1.2.25"
},
"devDependencies": {
"@types/bun": "^1.2.10",
"typescript": "^5.8.2"
}
}