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.
22 lines
514 B
JSON
22 lines
514 B
JSON
{
|
|
"name": "@copilotkit/example-runtime-express",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"example-dev": "tsx watch src/index.ts",
|
|
"example-build": "tsc",
|
|
"example-start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@copilotkit/runtime": "workspace:^",
|
|
"express": "^4.21.2"
|
|
},
|
|
"devDependencies": {
|
|
"@copilotkit/typescript-config": "workspace:^",
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^22.10.7",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.8.2"
|
|
}
|
|
}
|