nanocurrency-rpc-bindings
Version:
JavaScript and TypeScript bindings for Nano currency RPC calls
42 lines (41 loc) • 1.1 kB
JSON
{
"name": "nanocurrency-rpc-bindings",
"version": "0.2.1",
"description": "JavaScript and TypeScript bindings for Nano currency RPC calls",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npm run build:live",
"dev": "ts-node-dev --respawn --pretty --transpile-only src/index.ts",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --watch 'openapi/*.yaml' --exec \"ts-node\" src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nano",
"nanocurrency",
"banano",
"crypto",
"cryptocurrency"
],
"repository": {
"type": "git",
"url": "git@github.com:pskillen/nano-rpc-bindings-js.git"
},
"bin": {
"nano-types": "dist/index.js"
},
"author": "Patrick Skillen - pskillen@gmail.com",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"nanocurrency": "^2.5.0"
},
"devDependencies": {
"@types/node": "^14.14.37",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
}
}