1.3.0-beta.1: introduce typescript, webpack, better overall browser support, deprecate assert calls
This commit is contained in:
57
package.json
57
package.json
@@ -1,15 +1,49 @@
|
||||
{
|
||||
"name": "bybit-api",
|
||||
"version": "1.2.5",
|
||||
"version": "1.3.0-beta.1",
|
||||
"description": "A production-ready Node.js connector for the Bybit APIs and WebSockets",
|
||||
"main": "index.js",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
"files": [
|
||||
"lib/*",
|
||||
"index.js",
|
||||
"dist/*"
|
||||
],
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"clean": "rm -rf lib dist",
|
||||
"prebuild": "npm run clean",
|
||||
"build": "tsc",
|
||||
"pack": "webpack --config webpack/webpack.config.js",
|
||||
"prepush": "npm run build",
|
||||
"prepublish": "npm run build"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/tiagosiebler/bybit-api"
|
||||
},
|
||||
"author": "Tiago Siebler (https://github.com/tiagosiebler)",
|
||||
"contributors": [
|
||||
"Stefan Aebischer <os@pixtron.ch> (https://pixtron.ch)"
|
||||
],
|
||||
"dependencies": {
|
||||
"axios": "^0.21.0",
|
||||
"isomorphic-ws": "^4.0.1",
|
||||
"ws": "^7.4.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^14.14.7",
|
||||
"buffer": "^6.0.2",
|
||||
"crypto-browserify": "^3.12.0",
|
||||
"eslint": "^7.10.0",
|
||||
"source-map-loader": "^1.1.2",
|
||||
"stream-browserify": "^3.0.0",
|
||||
"ts-loader": "^8.0.11",
|
||||
"typescript": "^4.0.5",
|
||||
"webpack": "^5.4.0",
|
||||
"webpack-bundle-analyzer": "^4.1.0",
|
||||
"webpack-cli": "^4.2.0"
|
||||
},
|
||||
"keywords": [
|
||||
"bybit",
|
||||
"api",
|
||||
@@ -24,20 +58,13 @@
|
||||
"bitcoin",
|
||||
"best"
|
||||
],
|
||||
"author": "Tiago Siebler (https://github.com/tiagosiebler)",
|
||||
"contributors": [
|
||||
"Stefan Aebischer <os@pixtron.ch> (https://pixtron.ch)"
|
||||
],
|
||||
"funding": {
|
||||
"type": "individual",
|
||||
"url": "https://github.com/sponsors/tiagosiebler"
|
||||
},
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/tiagosiebler/bybit-api/issues"
|
||||
},
|
||||
"homepage": "https://github.com/tiagosiebler/bybit-api#readme",
|
||||
"dependencies": {
|
||||
"axios": "^0.21.0",
|
||||
"ws": "^7.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"eslint": "^7.10.0"
|
||||
}
|
||||
"homepage": "https://github.com/tiagosiebler/bybit-api#readme"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user