-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.62 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.62 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "turtlestack-lite",
"version": "2.0.0",
"type": "module",
"description": "🚀 TurtleStack Lite - Multi-Broker Trading MCP Server with Kite, Groww, Dhan | Technical Analysis | Cloudflare Workers | Claude AI Integration",
"keywords": [
"mcp-server",
"model-context-protocol",
"trading-api",
"kite-connect",
"groww-api",
"dhan-api",
"zerodha",
"stock-trading",
"algorithmic-trading",
"technical-analysis",
"rsi",
"macd",
"bollinger-bands",
"indian-stock-market",
"nse",
"bse",
"cloudflare-workers",
"claude-ai",
"anthropic",
"portfolio-management",
"order-management",
"real-time-trading",
"multi-broker",
"trading-bot",
"fintech",
"investment",
"nodejs",
"javascript",
"typescript",
"rest-api",
"websocket",
"financial-data",
"market-data",
"options-trading",
"equity-trading",
"derivatives",
"mutual-funds",
"sip",
"gtt",
"bracket-orders",
"stop-loss",
"limit-orders",
"margin-trading"
],
"main": "src/index.js",
"homepage": "https://github.com/turtlehq-tech/turtlestack-lite#readme",
"repository": {
"type": "git",
"url": "https://github.com/turtlehq-tech/turtlestack-lite.git"
},
"bugs": {
"url": "https://github.com/turtlehq-tech/turtlestack-lite/issues"
},
"author": {
"name": "TurtleStack Contributors",
"email": "support@turtlehq.tech",
"url": "https://turtlehq.tech"
},
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "node src/index.js",
"start:kite": "node server.js",
"start:groww": "node groww-server.js",
"start:unified-old": "node unified-trading-server.js",
"dev": "nodemon src/index.js",
"dev:kite": "nodemon server.js",
"dev:groww": "nodemon groww-server.js",
"dev:unified-old": "nodemon unified-trading-server.js",
"test": "node --test tests/**/*.test.js",
"test:unit": "node --test tests/unit/**/*.test.js",
"test:integration": "node --test tests/integration/**/*.test.js",
"test:watch": "node --test --watch tests/**/*.test.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.7.9",
"dotenv": "^16.3.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"nodemon": "^3.0.0"
}
}