forked from sieblyio/gateio-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.4 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
93
94
95
96
97
{
"name": "gateio-api",
"version": "1.6.1",
"description": "Complete & Robust Node.js SDK for Gate.com's REST APIs, WebSockets & WebSocket APIs, with TypeScript declarations.",
"scripts": {
"clean": "rm -rf dist/*",
"build": "rm -fr dist/* && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && bash ./postBuild.sh",
"pack": "webpack --config webpack/webpack.config.cjs",
"test": "jest --passWithNoTests",
"lint": "eslint src"
},
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/mjs/index.d.ts"
}
},
"type": "module",
"files": [
"dist/*",
"llms.txt"
],
"author": "Tiago Siebler (https://siebly.io)",
"contributors": [
"Jerko J (https://github.com/JJ-Cro)"
],
"dependencies": {
"@types/ws": "^8.18.1",
"axios": "^1.13.2",
"isomorphic-ws": "^4.0.1",
"ws": "8.21.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.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",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
},
"keywords": [
"Gate",
"Gate.io",
"Gate.com",
"Gate api",
"Gate.io api",
"Gate.com api",
"Gate nodejs",
"Gate javascript",
"Gate javascript websocket api",
"Gate typescript",
"Gate js",
"Gate ts",
"Gate api node",
"Gate sdk javascript",
"algo trading",
"api",
"websocket",
"rest",
"rest api",
"ccxt",
"trading bots",
"nodejs",
"node",
"trading",
"cryptocurrency",
"bitcoin",
"best",
"siebly.io"
],
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/tiagosiebler"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tiagosiebler/gateio-api"
},
"bugs": {
"url": "https://github.com/tiagosiebler/gateio-api/issues"
},
"homepage": "https://github.com/tiagosiebler/gateio-api#readme"
}