-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.13 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.13 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
{
"name": "@binance/binance-cli",
"description": "Official Binance CLI - A lightweight cli tool that provides a convenient interface to Binance's REST API.",
"version": "1.1.1",
"module": "./dist/index.mjs",
"type": "module",
"bin": {
"binance-cli": "./dist/index.mjs"
},
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"build": "npm run clean && tsdown",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"lint": "npx eslint 'src/**/*.ts' --fix"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "latest",
"@types/html-to-text": "^9.0.4",
"@types/yargs": "^17.0.35",
"prettier": "3.8.1",
"tsdown": "^0.21.7",
"typescript-eslint": "^8.58.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@binance/algo": "latest",
"@binance/alpha": "latest",
"@binance/c2c": "latest",
"@binance/convert": "latest",
"@binance/copy-trading": "latest",
"@binance/crypto-loan": "latest",
"@binance/derivatives-trading-coin-futures": "latest",
"@binance/derivatives-trading-options": "latest",
"@binance/derivatives-trading-portfolio-margin-pro": "latest",
"@binance/derivatives-trading-portfolio-margin": "latest",
"@binance/derivatives-trading-usds-futures": "latest",
"@binance/dual-investment": "latest",
"@binance/fiat": "latest",
"@binance/giftcard": "latest",
"@binance/margin-trading": "latest",
"@binance/mining": "latest",
"@binance/pay": "latest",
"@binance/rebate": "latest",
"@binance/simple-earn": "latest",
"@binance/spot": "latest",
"@binance/staking": "latest",
"@binance/sub-account": "latest",
"@binance/vip-loan": "latest",
"@binance/wallet": "latest",
"commander": "^14.0.3",
"html-to-text": "^9.0.5",
"inquirer": "^13.3.2",
"lodash": "^4.18.1",
"markdown-to-txt": "^2.0.1",
"yargs": "^18.0.0"
}
}