Files
bitget-api/package.json
2023-04-26 09:25:54 +01:00

74 lines
1.7 KiB
JSON

{
"name": "bitget-api",
"version": "1.1.1",
"description": "Node.js connector for Bitget REST APIs and WebSockets, with TypeScript & end-to-end tests.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*",
"index.js"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"clean": "rm -rf lib dist",
"build": "tsc",
"build:clean": "npm run clean && npm run build",
"build:watch": "npm run clean && tsc --watch",
"pack": "webpack --config webpack/webpack.config.js",
"prepublish": "npm run build:clean",
"betapublish": "npm publish --tag beta"
},
"author": "Tiago Siebler (https://github.com/tiagosiebler)",
"contributors": [],
"dependencies": {
"axios": "^0.27.2",
"isomorphic-ws": "^5.0.0",
"ws": "^8.9.0"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^18.7.23",
"eslint": "^8.24.0",
"jest": "^29.1.1",
"source-map-loader": "^4.0.0",
"ts-jest": "^29.0.2",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.10.0"
},
"keywords": [
"bitget",
"bitget api",
"okex",
"okex api",
"api",
"websocket",
"rest",
"rest api",
"usdt",
"trading bots",
"nodejs",
"node",
"trading",
"cryptocurrency",
"bitcoin",
"best"
],
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/tiagosiebler"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tiagosiebler/bitget-api"
},
"bugs": {
"url": "https://github.com/tiagosiebler/bitget-api/issues"
},
"homepage": "https://github.com/tiagosiebler/bitget-api#readme"
}