-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.87 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.87 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
{
"name": "crypto-api-examples",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"buildfast": " npm run lint:fix && npm run format && npm run lint && ts-node scripts/build-examples.ts ",
"build": "npm run update-latest && npm run buildfast",
"update-latest": "scripts/update-latest.sh",
"lint": "eslint \"examples/**/*.ts\" \"scripts/**/*.ts\"",
"lint:fix": "eslint \"examples/**/*.ts\" \"scripts/**/*.ts\" --fix",
"format": "prettier --write \"examples/**/*.ts\" \"scripts/**/*.ts\"",
"sync": "tsx scripts/sync-examples.ts",
"sync:binance": "npm run sync binance",
"sync:bitget": "npm run sync bitget",
"sync:bitmart": "npm run sync bitmart",
"sync:bybit": "npm run sync bybit",
"sync:coinbase": "npm run sync coinbase",
"sync:gate": "npm run sync gate",
"sync:kraken": "npm run sync kraken",
"sync:kucoin": "npm run sync kucoin",
"sync:okx": "npm run sync okx"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^20.19.31",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"comment-parser": "^1.4.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"glob": "^8.1.0",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"tsx": "^4.7.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@siebly/kraken-api": "^1.0.4",
"binance": "^3.3.3",
"bitget-api": "^3.1.4",
"bitmart-api": "^2.3.3",
"bybit-api": "^4.5.3",
"coinbase-api": "^1.1.11",
"gateio-api": "^1.4.2",
"https-proxy-agent": "latest",
"kucoin-api": "^2.5.0",
"okx-api": "^3.1.2",
"socks-proxy-agent": "^8.0.5"
}
}