UNPKG

kucoin-api

Version:

Complete & robust Node.js SDK for Kucoin's REST APIs and WebSockets, with TypeScript & strong end to end tests.

85 lines (84 loc) 2.16 kB
{ "name": "kucoin-api", "version": "2.1.9", "description": "Complete & robust Node.js SDK for Kucoin's REST APIs and WebSockets, with TypeScript & strong end to end tests.", "scripts": { "clean": "rm -rf dist", "build": "npm run clean && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && bash ./postBuild.sh", "test": "jest --passWithNoTests" }, "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", "types": "dist/mjs/index.d.ts", "exports": { ".": { "import": "./dist/mjs/index.js", "require": "./dist/cjs/index.js", "types": "./dist/mjs/index.d.ts" } }, "type": "module", "files": [ "dist/*" ], "author": "Tiago Siebler (https://github.com/tiagosiebler)", "contributors": [ "Jerko J (https://github.com/JJ-Cro)" ], "dependencies": { "axios": "^1.7.4", "isomorphic-ws": "^4.0.1", "nanoid": "^3.3.7", "ws": "^7.4.0" }, "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^20.11.6", "@types/ws": "^8.5.10", "@typescript-eslint/eslint-plugin": "^7.1.0", "@typescript-eslint/parser": "^7.1.0", "eslint": "^8.29.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", "eslint-plugin-require-extensions": "^0.1.3", "eslint-plugin-simple-import-sort": "^12.0.0", "jest": "^29.7.0", "prettier": "^3.3.3", "ts-jest": "^29.2.4", "ts-node": "^10.9.2", "typescript": "^5.3.3" }, "keywords": [ "kucoin", "kucoin api", "kucoin nodejs", "kucoin javascript", "kucoin typescript", "algo trading", "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/kucoin-api" }, "bugs": { "url": "https://github.com/tiagosiebler/kucoin-api/issues" }, "homepage": "https://github.com/tiagosiebler/kucoin-api#readme" }