-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "render-ops-agent-workshop",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc",
"check": "npm run build && npm test",
"db:migrate": "node dist/scripts/migrate.js",
"db:migrate:local": "tsx --env-file=.env scripts/migrate.ts",
"dev": "tsx watch --env-file-if-exists=.env server/index.ts",
"start": "node dist/server/index.js",
"target:start": "node dist/target/index.js",
"target:dev": "tsx watch target/index.ts",
"test": "vitest run",
"tui": "tsx --env-file-if-exists=.env tui/index.tsx"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.100.1",
"@assistant-ui/react-ink-markdown": "^0.0.22",
"@hono/node-server": "^2.0.4",
"hono": "^4.12.23",
"ink": "^7.0.5",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"marked": "^15.0.12",
"pg": "^8.21.0",
"react": "^19.2.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.16",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}