-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 832 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 832 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
{
"name": "nexus",
"version": "0.0.1",
"description": "A self-evolving market intelligence agent",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"run:session": "ts-node src/index.ts run",
"status": "ts-node src/index.ts status",
"journal": "ts-node src/index.ts journal",
"mind": "ts-node src/index.ts mind",
"analytics": "ts-node src/index.ts analytics",
"rebuild-site": "ts-node src/index.ts rebuild-site",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.0",
"vitest": "^4.1.0"
}
}