UNPKG

btcrpc

Version:
58 lines (57 loc) 1.49 kB
{ "name": "btcrpc", "version": "0.0.1", "description": "Bitcoin RPC Wrapper", "author": "Sammwy", "license": "ISC", "type": "commonjs", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./typings/index.d.ts", "exports": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" }, "scripts": { "clean": "rimraf ./dist", "typings": "tsc --declaration --emitDeclarationOnly --declarationDir ./typings", "build:cjs": "tsc -p tsconfig-cjs.json", "build:esm": "tsc -p tsconfig.json", "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run typings", "format": "prettier --write \"src/**/*.ts\"", "lint": "tslint -p tsconfig.json", "test": "dotenv -e .env jest" }, "dependencies": { "node-fetch": "2.6.6" }, "devDependencies": { "@types/jest": "^27.0.3", "@types/node-fetch": "^2.5.12", "dotenv-cli": "^4.1.1", "jest": "^27.4.3", "prettier": "^2.5.0", "rimraf": "^3.0.2", "ts-jest": "^27.0.7", "ts-node": "^10.4.0", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^4.5.2" }, "jest": { "preset": "ts-jest", "testEnvironment": "node" }, "files": [ "dist/**/*" ], "repository": { "type": "git", "url": "https://github.com/sammwyy/btcrpc" }, "keywords": [ "bitcoin", "rpc", "bitcoin-rpc" ] }