mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
68f9b8ad45
Example projects demonstrating the new fetch-based runtime adapters across six server frameworks/runtimes.
19 lines
440 B
JSON
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"
|
|
}
|
|
}
|