-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) Β· 1.94 KB
/
package.json
File metadata and controls
91 lines (91 loc) Β· 1.94 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
{
"name": "ctrader-ts",
"version": "1.0.0",
"description": "TypeScript client for the cTrader Open API β trade forex/CFDs, build trading bots, manage positions. Type-safe, auto-retry, AI-agent friendly.",
"keywords": [
"ctrader",
"ctrader-api",
"ctrader-open-api",
"ctrader-sdk",
"ctrader-typescript",
"ctrader-node",
"spotware",
"trading",
"trading-api",
"trading-bot",
"trading-library",
"forex",
"forex-trading",
"forex-api",
"cfd",
"cfd-trading",
"algorithmic-trading",
"automated-trading",
"algo-trading",
"quant",
"quantitative-trading",
"position-management",
"order-management",
"market-data",
"live-prices",
"websocket",
"protobuf",
"typescript",
"type-safe",
"ai-trading",
"ai-agent",
"agent-friendly",
"llm",
"cli"
],
"homepage": "https://github.com/thecommandcat/ctrader-ts",
"repository": {
"type": "git",
"url": "https://github.com/thecommandcat/ctrader-ts"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist",
"assets",
"llms.txt",
"README.md",
"LICENSE"
],
"bin": {
"ctrader-ts": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc && cp -r src/protocol/proto dist/src/protocol/proto && chmod +x dist/cli/index.js dist/bin/auth.js",
"dev": "tsc --watch",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "bunx biome check src/ bin/ cli/",
"lint:fix": "bunx biome check --write src/ bin/ cli/",
"auth": "node dist/bin/auth.js",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"@types/bun": "latest",
"@types/node": "latest",
"protobufjs-cli": "^2.0.0",
"typescript": "^5.8.0"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"commander": "^14.0.3",
"protobufjs": "^8.0.0"
}
}