UNPKG

@philliphamnett/bitfinex

Version:

A library of useful commands to interface with the Bitfinex API

64 lines (63 loc) 1.64 kB
{ "name": "@philliphamnett/bitfinex", "version": "1.0.4", "description": "A library of useful commands to interface with the Bitfinex API", "type": "module", "types": "./lib/cjs/types/index.d.ts", "main": "./lib/cjs/index.js", "scripts": { "clean": "rm -rf ./lib", "build": "npm run clean && npm run build:esm && npm run build:cjs", "build:esm": "tsc -p ./tsconfig.esm.json; echo '{\"type\": \"module\"}' > ./lib/esm/src/src/package.json", "build:cjs": "tsc -p ./tsconfig.cjs.json; echo '{\"type\": \"commonjs\"}' > ./lib/cjs/src/src/package.json", "test": "jest" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/PhillipHamnett/bitfinex.git" }, "keywords": [ "Bitfinex", "API", "Websocket", "Cryptocurrency", "Trading", "Wallet", "Transfer", "Exchange", "Margin", "Funding" ], "author": "Phillip Hamnett", "license": "MIT", "bugs": { "url": "https://github.com/PhillipHamnett/bitfinex/issues" }, "homepage": "https://github.com/PhillipHamnett/bitfinex#readme", "files": [ "lib/**/*" ], "dependencies": { "axios": "^1.4.0" }, "devDependencies": { "@types/jest": "^29.5.3", "@types/node": "^20.4.8", "jest": "^29.6.2", "prettier": "^3.0.1", "ts-jest": "^29.1.1", "ts-node": "^10.9.1" }, "exports": { ".": { "import": { "types": "./lib/esm/types/src/index.d.ts", "default": "./lib/esm/src/src/index.js" }, "require": { "types": "./lib/cjs/types/src/index.d.ts", "default": "./lib/cjs/src/src/index.js" } } } }