-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.12 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.12 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": "kalshi-deep-trading-bot",
"version": "2.0.22",
"description": "Kalshi Deep Trading Bot - AI-powered prediction market terminal.",
"type": "module",
"main": "src/index.tsx",
"bin": {
"kalshi-deep-trading-bot": "./src/index.tsx"
},
"scripts": {
"start": "bun run src/index.tsx",
"dev": "bun --watch run src/index.tsx",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:integration": "bun test **/*.itest.ts",
"test:watch": "bun test --watch",
"gateway:login": "bun run src/gateway/index.ts login",
"gateway": "bun run src/gateway/index.ts run"
},
"dependencies": {
"@langchain/anthropic": "^1.1.3",
"@langchain/core": "^1.1.0",
"@langchain/google-genai": "^2.0.0",
"@langchain/ollama": "^1.0.3",
"@langchain/openai": "^1.1.3",
"@langchain/tavily": "^1.0.1",
"@mariozechner/pi-tui": "^0.52.9",
"@mozilla/readability": "^0.6.0",
"dotenv": "^17.2.3",
"langsmith": "^0.4.10",
"linkedom": "^0.18.12",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/bun": "latest",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}