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
40 lines (40 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"name": "@copilotkit/showcase-harness",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:update-goldens": "UPDATE_GOLDENS=1 vitest run",
"dev": "tsx watch src/orchestrator.ts",
"start": "node dist/orchestrator.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.710.0",
"@hono/node-server": "^1.14.0",
"chokidar": "^4.0.3",
"commander": "^14.0.3",
"croner": "^9.0.0",
"hono": "^4.6.0",
"js-yaml": "^4.1.0",
"mustache": "^4.2.0",
"playwright": "^1.59.1",
"ulid": "^2.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/mustache": "^4.2.5",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.2.4",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.2.4"
}
}