-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.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
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
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@siebly/htx-api",
"version": "1.0.0",
"description": "Complete & robust Node.js SDK for HTX's REST APIs and WebSockets, with TypeScript & strong end to end tests.",
"scripts": {
"clean": "node scripts/clean.mjs",
"build": "npm run clean && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && node scripts/postbuild.mjs",
"test": "jest --passWithNoTests",
"test:extensions": "tsc -p tsconfig.extensions.json",
"test:packed": "npm run build && node test/packaging/packed-consumer-smoke.mjs",
"test:types": "npm run test:extensions && tsc -p test/tsconfig.test.json --noEmit && tsc -p test/types/tsconfig.json",
"test:unit": "jest --passWithNoTests --runInBand test/unit",
"lint": "eslint src"
},
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"exports": {
".": {
"types": "./dist/mjs/index.d.ts",
"browser": "./dist/mjs/index.js",
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/mjs/index.js"
}
},
"browser": {
"./dist/mjs/lib/https-agent.js": "./dist/mjs/lib/https-agent.browser.js",
"./dist/mjs/lib/event-emitter.js": "./dist/mjs/lib/event-emitter.browser.js",
"./dist/cjs/lib/https-agent.js": "./dist/cjs/lib/https-agent.browser.js",
"./dist/cjs/lib/event-emitter.js": "./dist/cjs/lib/event-emitter.browser.js"
},
"type": "module",
"sideEffects": false,
"files": [
"dist/*",
"llms.txt"
],
"author": "Siebly.io (https://github.com/sieblyio)",
"contributors": [
"Tiago Siebler (https://github.com/tiagosiebler)",
"Jerko J (https://github.com/JJ-Cro)"
],
"dependencies": {
"axios": "1.18.1",
"events": "3.3.0",
"isomorphic-ws": "^5.0.0",
"ws": "8.21.1"
},
"devDependencies": {
"@eslint/compat": "2.1.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.14",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"esbuild": "0.27.2",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-require-extensions": "0.1.3",
"eslint-plugin-simple-import-sort": "^13.0.0",
"jest": "^30.4.2",
"prettier": "^3.8.3",
"typescript": "^6.0.3"
},
"overrides": {
"@babel/core": "7.29.6",
"form-data": "4.0.6",
"js-yaml": "3.15.0"
},
"keywords": [
"htx",
"htx api",
"htx nodejs",
"htx javascript",
"htx typescript",
"htx websocket api",
"htx websocket api javascript",
"algo trading",
"api",
"websocket",
"rest",
"rest api",
"usdt",
"trading bots",
"nodejs",
"node",
"trading",
"cryptocurrency",
"bitcoin",
"siebly",
"siebly.io"
],
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/tiagosiebler"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sieblyio/htx-api.git"
},
"bugs": {
"url": "https://github.com/sieblyio/htx-api/issues"
},
"homepage": "https://github.com/sieblyio/htx-api#readme"
}