Files
hp-devkit/npm/package.json
2023-07-05 13:22:11 +05:30

30 lines
736 B
JSON

{
"name": "hpdevkit",
"version": "0.5.9",
"description": "Developer toolkit for HotPocket smart contract development",
"scripts": {
"lint": "./node_modules/.bin/eslint *.js",
"build": "npm run lint && ncc build index.js -o dist/",
"bundle": "npm run build && ./clean-pkg.sh",
"publish": "npm run bundle && cp README.md dist && npm publish ./dist",
"install": "node scripts/install.js"
},
"keywords": [
"HotPocket",
"toolkit",
"hpdevkit",
"smart contract"
],
"homepage": "https://github.com/HotPocketDev/evernode-sdk",
"license": "MIT",
"dependencies": {
"commander": "9.4.0"
},
"devDependencies": {
"eslint": "8.3.0"
},
"bin": {
"hpdevkit": "./index.js"
}
}