Files
copilotkit__copilotkit/packages/v2/runtime/package.json
2026-03-12 22:32:04 +00:00

73 lines
2.0 KiB
JSON

{
"name": "@copilotkitnext/runtime",
"version": "1.54.0",
"deprecated": "This package is deprecated. Use @copilotkit/runtime instead. V2 features are being integrated into the main @copilotkit exports and will be available under the /v2 subpath.",
"description": "Server-side runtime package for CopilotKit2",
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./express": {
"import": "./dist/express.mjs",
"require": "./dist/express.cjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint": "eslint .",
"check-types": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"publint": "publint .",
"attw": "attw --pack . --profile node16"
},
"devDependencies": {
"@copilotkitnext/eslint-config": "workspace:*",
"@copilotkitnext/typescript-config": "workspace:*",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.15.3",
"@types/phoenix": "^1.6.6",
"eslint": "^9.30.0",
"supertest": "^7.1.1",
"tsdown": "^0.20.3",
"typescript": "5.8.2",
"vitest": "^3.0.5"
},
"dependencies": {
"@ag-ui/a2ui-middleware": "0.0.2",
"@ag-ui/client": "0.0.47",
"@ag-ui/core": "0.0.47",
"@ag-ui/encoder": "0.0.47",
"@ag-ui/mcp-apps-middleware": "0.0.2",
"@copilotkitnext/shared": "workspace:*",
"cors": "^2.8.5",
"phoenix": "^1.8.4",
"ws": "^8.18.0",
"express": "^4.21.2",
"hono": "^4.11.4",
"rxjs": "7.8.1"
},
"peerDependencies": {
"@ag-ui/client": "0.0.47",
"@ag-ui/core": "0.0.47",
"@ag-ui/encoder": "0.0.47",
"@copilotkitnext/shared": "workspace:*"
},
"peerDependenciesMeta": {},
"engines": {
"node": ">=18"
},
"module": "./dist/index.mjs"
}