-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.39 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
{
"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": "echo \"Error: no test specified\" && exit 1"
},
"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",
"@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",
"cors": "^2.8.5",
"dotenv": "^17.3.1",
"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"
}
}