v1.3.0: typescript support

This commit is contained in:
tiagosiebler
2020-12-26 17:44:45 +00:00
parent 50fc33c10c
commit 96ef6427c3

View File

@@ -1,13 +1,12 @@
{ {
"name": "bybit-api", "name": "bybit-api",
"version": "1.3.0-beta.2", "version": "1.3.0",
"description": "A production-ready Node.js connector for the Bybit APIs and WebSockets", "description": "A production-ready Node.js connector for the Bybit APIs and WebSockets",
"main": "lib/index.js", "main": "lib/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",
"files": [ "files": [
"lib/*", "lib/*",
"index.js", "index.js"
"dist/*"
], ],
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
@@ -15,7 +14,6 @@
"prebuild": "npm run clean", "prebuild": "npm run clean",
"build": "tsc", "build": "tsc",
"pack": "webpack --config webpack/webpack.config.js", "pack": "webpack --config webpack/webpack.config.js",
"prepush": "npm run build",
"prepublish": "npm run build", "prepublish": "npm run build",
"betapublish": "npm publish --tag beta" "betapublish": "npm publish --tag beta"
}, },