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

154 lines
3.6 KiB
JSON

{
"name": "@copilotkit/runtime",
"private": false,
"homepage": "https://github.com/CopilotKit/CopilotKit",
"repository": {
"type": "git",
"url": "https://github.com/CopilotKit/CopilotKit.git"
},
"publishConfig": {
"access": "public"
},
"version": "1.54.0",
"sideEffects": [
"./dist/index.mjs",
"./dist/index.cjs",
"./dist/v2/index.mjs",
"./dist/v2/index.cjs"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./langgraph": {
"import": "./dist/langgraph.mjs",
"require": "./dist/langgraph.cjs"
},
"./v2": {
"import": "./dist/v2/index.mjs",
"require": "./dist/v2/index.cjs"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.cts",
"license": "MIT",
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"test:watch": "vitest",
"check-types": "tsc --noEmit",
"generate-graphql-schema": "rm -rf __snapshots__ && ts-node ./scripts/generate-gql-schema.ts",
"link:global": "pnpm link --global",
"unlink:global": "pnpm unlink --global",
"publint": "publint .",
"attw": "attw --pack . --profile node16"
},
"devDependencies": {
"@swc/core": "1.5.28",
"@types/node": "^18.11.17",
"@whatwg-node/server": "^0.9.34",
"eslint": "^8.56.0",
"eslint-config-custom": "workspace:*",
"nodemon": "^3.1.3",
"ts-node": "^10.9.2",
"tsconfig": "workspace:*",
"tsdown": "^0.20.3",
"typescript": "^5.2.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@ag-ui/client": "^0.0.47",
"@ag-ui/core": "^0.0.47",
"@ag-ui/langgraph": "^0.0.24",
"@ai-sdk/anthropic": "^3.0.49",
"@ai-sdk/openai": "^3.0.36",
"@copilotkit/shared": "workspace:*",
"@copilotkitnext/agent": "workspace:*",
"@copilotkitnext/runtime": "workspace:*",
"@graphql-yoga/plugin-defer-stream": "^3.3.1",
"@hono/node-server": "^1.13.5",
"@scarf/scarf": "^1.3.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"graphql": "^16.8.1",
"graphql-scalars": "^1.23.0",
"graphql-yoga": "^5.3.1",
"ai": "^6.0.104",
"hono": "^4.11.4",
"openai": "^4.85.1",
"partial-json": "^0.1.7",
"pino": "^9.2.0",
"pino-pretty": "^11.2.1",
"reflect-metadata": "^0.2.2",
"rxjs": "7.8.1",
"type-graphql": "2.0.0-rc.1",
"zod": "^3.23.3"
},
"peerDependencies": {
"@anthropic-ai/sdk": "^0.57.0",
"@langchain/aws": ">=0.1.9",
"@langchain/core": ">=0.3.66",
"@langchain/community": ">=0.3.58",
"@langchain/google-gauth": ">=0.1.0",
"@langchain/langgraph-sdk": ">=0.1.2",
"@langchain/openai": ">=0.4.2",
"groq-sdk": ">=0.3.0 <1.0.0",
"langchain": ">=0.3.3"
},
"peerDependenciesMeta": {
"@anthropic-ai/sdk": {
"optional": true
},
"@langchain/aws": {
"optional": true
},
"@langchain/community": {
"optional": true
},
"@langchain/google-gauth": {
"optional": true
},
"@langchain/langgraph-sdk": {
"optional": true
},
"@langchain/openai": {
"optional": true
},
"groq-sdk": {
"optional": true
},
"langchain": {
"optional": true
},
"openai": {
"optional": true
}
},
"nx": {
"targets": {
"build": {
"dependsOn": [
"generate-graphql-schema",
"^build"
]
}
}
},
"keywords": [
"copilotkit",
"copilot",
"react",
"nextjs",
"nodejs",
"ai",
"assistant",
"javascript",
"automation",
"textarea"
]
}