@binance/derivatives-trading-options
Version:
Official Binance Derivatives Trading (COIN-M Futures) Connector - A lightweight library that provides a convenient interface to Binance's COINN-M Futures REST API, WebSocket API and WebSocket Streams.
53 lines (52 loc) • 1.54 kB
JSON
{
"name": "@binance/derivatives-trading-options",
"description": "Official Binance Derivatives Trading (COIN-M Futures) Connector - A lightweight library that provides a convenient interface to Binance's COINN-M Futures REST API, WebSocket API and WebSocket Streams.",
"version": "1.0.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsup",
"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",
"Derivatives",
"Futures",
"Coin-M",
"Connector",
"REST",
"WebSocket",
"Trading"
],
"author": "Binance",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^20.17.24",
"@types/ws": "^8.5.5",
"eslint": "8.57.0",
"jest": "^29.6.4",
"prettier": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.24.0"
},
"dependencies": {
"@binance/common": "1.0.0",
"axios": "^1.7.4",
"ws": "^8.17.1"
}
}