forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@copilotkit/sdk-js",
"version": "1.59.5",
"private": false,
"keywords": [
"ai",
"assistant",
"automation",
"copilot",
"copilotkit",
"javascript",
"nextjs",
"nodejs",
"react",
"textarea"
],
"homepage": "https://github.com/CopilotKit/CopilotKit",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CopilotKit/CopilotKit.git"
},
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./langchain": {
"import": "./dist/langchain.mjs",
"require": "./dist/langchain.cjs"
},
"./langgraph": {
"import": "./dist/langgraph.mjs",
"require": "./dist/langgraph.cjs"
},
"./langgraph-middlewares": {
"import": "./dist/langgraph-middlewares.mjs",
"require": "./dist/langgraph-middlewares.cjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"test:watch": "vitest",
"check-types": "tsc --noEmit",
"link:global": "pnpm link --global",
"unlink:global": "pnpm unlink --global",
"publint": "publint .",
"attw": "attw --pack . --profile node16"
},
"dependencies": {
"@ag-ui/langgraph": "0.0.37",
"@copilotkit/shared": "workspace:*"
},
"devDependencies": {
"@langchain/core": "^1.1.41",
"@langchain/langgraph": "^1.2.9",
"@swc/core": "1.5.28",
"@types/express": "^4.17.21",
"@types/node": "^18.11.17",
"@whatwg-node/server": "^0.9.34",
"eslint": "^8.56.0",
"langchain": "^1.3.4",
"nodemon": "^3.1.3",
"ts-node": "^10.9.2",
"tsconfig": "workspace:*",
"tsdown": "^0.20.3",
"typescript": "^5.2.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@langchain/core": ">=0.4.0 <2.0.0",
"@langchain/langgraph": ">=0.4.0 <2.0.0",
"langchain": ">=1.0.0",
"typescript": "^5.2.3",
"zod": "^3.23.3 || ^3.24.0 || ^3.25.0"
}
}