-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 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
{
"name": "openalgo",
"version": "1.0.7",
"description": "A Node.js wrapper for the OpenAlgo API with WebSocket support",
"main": "src/index.mjs",
"type": "module",
"scripts": {
"examples": "node examples/run-examples.mjs all",
"example:data": "node examples/run-examples.mjs data",
"example:order": "node examples/run-examples.mjs order",
"example:account": "node examples/run-examples.mjs account",
"example:strategy": "node examples/run-examples.mjs strategy",
"example:analyzer": "node examples/run-examples.mjs analyzer",
"example:websocket": "node examples/run-examples.mjs websocket"
},
"repository": {
"type": "git",
"url": "https://github.com/marketcalls/openalgo-node.git"
},
"keywords": [
"openalgo",
"trading",
"API",
"nodejs",
"algorithmic-trading",
"finance",
"websocket",
"real-time-data"
],
"author": "Rajandran R",
"license": "MIT",
"dependencies": {
"axios": "^1.8.4",
"ws": "^8.18.0"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"src/**/*",
"README.md",
"LICENSE"
]
}