forked from JakeNesler/OpenProphet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.76 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "openprophet",
"version": "2.0.0",
"description": "Autonomous AI trading agent with web dashboard, MCP tools, and Go trading backend",
"main": "mcp-server.js",
"type": "module",
"bin": {
"openprophet-mcp": "./mcp-server.js"
},
"scripts": {
"start": "node mcp-server.js",
"agent": "node agent/server.js",
"test": "node --test tests/*.test.js",
"bot:start": "bash scripts/start.sh --paper",
"bot:stop": "bash scripts/stop.sh",
"bot:status": "bash scripts/status.sh",
"bot:monitor": "bash scripts/monitor.sh",
"bot:live": "bash scripts/start.sh --live",
"backtest": "node backtest/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JakeNesler/OpenProphet.git"
},
"keywords": [
"mcp",
"trading",
"alpaca",
"ai",
"autonomous",
"opencode",
"agent"
],
"author": "Jake Nesler",
"license": "CC-BY-NC-4.0",
"bugs": {
"url": "https://github.com/JakeNesler/OpenProphet/issues"
},
"homepage": "https://github.com/JakeNesler/OpenProphet#readme",
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@coinbase/agentkit": "0.10.4",
"@google/generative-ai": "^0.24.1",
"@modelcontextprotocol/sdk": "^1.22.0",
"@xenova/transformers": "^2.17.2",
"axios": "1.13.2",
"better-sqlite3": "^12.4.6",
"ccxt": "^4.5.45",
"cors": "^2.8.5",
"dotenv": "^17.3.1",
"ethers": "6.16.0",
"express": "^5.1.0",
"openai": "^6.9.1",
"sqlite-vec": "^0.1.7-alpha.2"
},
"optionalDependencies": {
"sqlite-vec-darwin-arm64": "^0.1.7-alpha.2",
"sqlite-vec-darwin-x64": "^0.1.7-alpha.2",
"sqlite-vec-linux-x64": "^0.1.7-alpha.2",
"sqlite-vec-win32-x64": "^0.1.7-alpha.2"
},
"overrides": {
"axios": "$axios"
}
}