-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.54 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
{
"name": "@copilotkitnext/runtime",
"version": "0.0.33",
"description": "Server-side runtime package for CopilotKit2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./express": {
"types": "./dist/express.d.ts",
"import": "./dist/express.mjs",
"require": "./dist/express.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"prepublishOnly": "pnpm run build",
"dev": "tsup --watch",
"lint": "eslint . --max-warnings 0",
"check-types": "tsc --noEmit",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@copilotkitnext/eslint-config": "workspace:*",
"@copilotkitnext/typescript-config": "workspace:*",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.15.3",
"eslint": "^9.30.0",
"openai": "^5.9.0",
"supertest": "^7.1.1",
"tsup": "^8.5.0",
"typescript": "5.8.2",
"vitest": "^3.0.5"
},
"dependencies": {
"@ag-ui/client": "0.0.42",
"@ag-ui/core": "0.0.42",
"@ag-ui/encoder": "0.0.42",
"@copilotkitnext/shared": "workspace:*",
"cors": "^2.8.5",
"express": "^4.21.2",
"hono": "^4.6.13",
"rxjs": "7.8.1"
},
"peerDependencies": {
"openai": "^5.9.0"
},
"peerDependenciesMeta": {},
"engines": {
"node": ">=18"
}
}