-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 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
58
59
60
61
62
63
64
65
{
"name": "@binance/spot",
"description": "Official Binance Spot Connector - A lightweight library that provides a convenient interface to Binance's Spot REST API, WebSocket API and WebSocket Streams.",
"version": "31.0.3",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run clean && tsdown",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"test": "npx jest --maxWorkers=4 --bail",
"test:watch": "npx jest --watch",
"format": "npx prettier --ignore-path .prettierignore --write .",
"lint": "npx eslint '**/*.ts' --fix"
},
"keywords": [
"Binance",
"API",
"Spot",
"Connector",
"REST",
"WebSocket",
"Trading"
],
"author": "Binance",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/binance/binance-connector-js.git"
},
"bugs": {
"url": "https://github.com/binance/binance-connector-js/issues"
},
"homepage": "https://github.com/binance/binance-connector-js#readme",
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^20.17.24",
"eslint": "8.57.0",
"jest": "^29.6.4",
"json-with-bigint": "^3.4.4",
"prettier": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsdown": "^0.16.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.24.0"
},
"dependencies": {
"@binance/common": "2.4.1",
"@types/ws": "^8.5.5",
"axios": "^1.7.4",
"ws": "^8.17.1"
}
}