-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.2 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
{
"name": "call-code",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "bun@1.3.11",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "tsx source/app.tsx",
"start": "tsx source/app.tsx",
"typecheck": "tsc -p tsconfig.json --noEmit",
"typecheck:client": "tsc -p packages/client/tsconfig.json --noEmit",
"test": "vitest run --reporter verbose",
"build:agent-core": "tsc -p packages/agent-core/tsconfig.json",
"export:web": "tsx tests/export-web.ts",
"dev:client": "bun run --cwd packages/client dev",
"build:client": "bun run --cwd packages/client build",
"preview:client": "bun run --cwd packages/client preview"
},
"dependencies": {
"dotenv": "^17.4.2",
"ink": "^7.1.1",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tiktoken": "^1.0.20"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"prettier": "^3.4.2",
"tsx": "^4.23.7",
"typescript": "^6.0.3",
"vite": "^8.2.0",
"vitest": "^3.2.4"
},
"trustedDependencies": [
"esbuild",
"tesseract.js"
]
}