UNPKG

binance-futures-wrapper

Version:

A comprehensive TypeScript wrapper for Binance USDT-M Futures API with full REST and WebSocket support

59 lines (58 loc) 1.43 kB
{ "name": "binance-futures-wrapper", "version": "1.0.2", "description": "A comprehensive TypeScript wrapper for Binance USDT-M Futures API with full REST and WebSocket support", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "node dist/index.js", "test": "jest", "lint": "eslint src/**/*.ts", "clean": "rimraf dist", "prepare": "npm run build" }, "keywords": [ "binance", "futures", "trading", "cryptocurrency", "api", "websocket", "typescript" ], "author": "VanDH", "license": "MIT", "dependencies": { "ws": "^8.14.2", "axios": "^1.6.0", "crypto": "^1.0.1", "events": "^3.3.0" }, "devDependencies": { "@types/node": "^20.8.0", "@types/ws": "^8.5.8", "@typescript-eslint/eslint-plugin": "^6.7.4", "@typescript-eslint/parser": "^6.7.4", "eslint": "^8.50.0", "jest": "^29.7.0", "@types/jest": "^29.5.5", "ts-jest": "^29.1.1", "typescript": "^5.2.2", "rimraf": "^5.0.5" }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "repository": { "type": "git", "url": "https://github.com/dangvan0907/binance-futures-wrapper.git" }, "bugs": { "url": "https://github.com/dangvan0907/binance-futures-wrapper/issues" }, "homepage": "https://github.com/dangvan0907/binance-futures-wrapper#readme" }