-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 941 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 941 Bytes
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
{
"name": "research-desk",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"description": "The Research Desk: an SEC filings analysis desk built on Claude Managed Agents — agent-driven map-reduce, sub-agents, memory stores, skills, and outcomes, behind a self-hosted web console.",
"scripts": {
"dev": "next dev --port 3100",
"build": "next build",
"start": "next start --port 3100",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"lint": "next lint",
"seed": "tsx scripts/seed.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "latest",
"next": "^15.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"tsx": "^4.22.4",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}