-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
41 lines (41 loc) · 1.11 KB
/
package.json
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
{
"name": "@binance/connector-typescript",
"version": "0.3.14",
"description": "This is a lightweight library that works as a connector to the Binance public API.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"test": "npx jest --runInBand",
"build": "tsup",
"dev": "ts-node ./examples/restful/market.ts",
"lint": "eslint --config .eslintrc.json --ext ts . --fix"
},
"keywords": [
"Binance",
"API"
],
"author": "Binance",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "22.9.0",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"dotenv": "^16.3.1",
"eslint": "8.57.0",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.7.2"
},
"dependencies": {
"axios": "^1.7.4",
"ws": "^8.17.1"
}
}