UNPKG

nodejs-cryptomus

Version:

A comprehensive Node.js client for the Cryptomus API

62 lines (61 loc) 1.58 kB
{ "name": "nodejs-cryptomus", "version": "1.0.1", "description": "A comprehensive Node.js client for the Cryptomus API", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/types/index.d.ts", "exports": { ".": { "require": "./dist/cjs/index.js", "import": "./dist/esm/index.js", "types": "./dist/types/index.d.ts" } }, "scripts": { "clean": "rimraf dist", "build:cjs": "tsc -p tsconfig.cjs.json", "build:esm": "tsc -p tsconfig.esm.json", "build:types": "tsc -p tsconfig.types.json", "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types", "test": "jest", "lint": "eslint src --ext .ts", "prepublishOnly": "npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/DEVSMSM/cryptomus-api.git" }, "keywords": [ "cryptomus", "cryptocurrency", "payment", "payout", "crypto", "api", "webhook" ], "author": "Your Name", "license": "MIT", "bugs": { "url": "https://github.com/DEVSMSM/cryptomus-api/issues" }, "homepage": "https://github.com/DEVSMSM/cryptomus-api#readme", "devDependencies": { "@types/jest": "^29.5.5", "@types/node": "^20.17.46", "@typescript-eslint/eslint-plugin": "^6.7.0", "@typescript-eslint/parser": "^6.7.0", "eslint": "^8.49.0", "jest": "^29.7.0", "rimraf": "^5.0.1", "ts-jest": "^29.1.1", "typescript": "^5.2.2" }, "dependencies": { "axios": "^1.9.0" }, "engines": { "node": ">=14.0.0" } }