package.json
{
"name": "@stoqey/ib",
"version": "1.3.30",
"private": false,
"description": "Interactive Brokers TWS/IB Gateway API client library for Node.js (TS)",
"keywords": [
"interactive",
"brokers",
"tws",
"twsapi",
"ib",
"gateway",
"finance",
"stock",
"bond",
"option",
"forex",
"future",
"ticker",
"symbol",
"quote",
"market",
"data",
"automated",
"invest",
"trade",
"trading",
"system",
"api",
"client",
"library",
"stoqey"
],
"homepage": "https://github.com/stoqey/ib",
"bugs": {
"url": "https://github.com/stoqey/ib/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/stoqey/ib.git"
},
"license": "MIT",
"author": {
"name": "Ceddy Muhoza",
"email": "ceddymuhoza@gmail.com",
"url": "https://ceddy.org"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"register/",
"LICENSE"
],
"scripts": {
"build": "yarn clean && yarn tsc",
"build:watch": "yarn tsc --watch",
"clean": "rm -rf dist",
"doc": "typedoc --excludeInternal",
"doc:dev": "typedoc --out ./doc-dev",
"lint": "eslint . --ext .ts",
"prepublishOnly": "yarn build",
"release": "yarn lint && yarn test && yarn doc && yarn build",
"test": "jest --maxWorkers=8 --reporters=default --useStderr --detectOpenHandles",
"test-next": "jest ./src/tests/unit/api-next/ --maxWorkers=8 --reporters=default --useStderr --detectOpenHandles",
"type-check": "tsc --noEmit"
},
"dependencies": {
"colors": "^1.4.0",
"command-buffer": "^0.1.0",
"dotenv": "^16.4.5",
"eventemitter3": "^5.0.1",
"function-rate-limit": "^1.1.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.19.64",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"ajv": "^8.17.1",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-rxjs": "^5.0.3",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.11",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18.0.0"
}
}