-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1002 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1002 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
33
34
35
{
"name": "tradingview-agent",
"version": "1.0.0",
"description": "Multi-LLM TradingView agent — Claude, GPT, Gemini, Qwen, DeepSeek, MiniMax",
"type": "module",
"bin": {
"tva": "src/cli/index.js",
"tradingview-agent": "src/cli/index.js"
},
"main": "src/index.js",
"scripts": {
"start": "node src/cli/index.js",
"server": "node src/web/server.js",
"dev": "node src/web/server.js --dev",
"build": "node scripts/build.js",
"test": "node --test tests/*.test.js src/**/__tests__/*.test.js",
"test:unit": "node --test tests/*.test.js src/**/__tests__/*.test.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.36.3",
"@google/genai": "^1.48.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"chalk": "^5.4.1",
"chrome-remote-interface": "^0.33.2",
"dotenv": "^16.4.5",
"inquirer": "^12.6.0",
"marked": "^15.0.12",
"openai": "^6.33.0",
"ora": "^8.2.0",
"ws": "^8.18.2"
},
"engines": {
"node": ">=18.0.0"
}
}