mirror of
https://github.com/EvernodeXRPL/hp-devkit.git
synced 2026-04-29 15:37:58 +00:00
31 lines
919 B
JSON
31 lines
919 B
JSON
{
|
|
"name": "hpdevkit",
|
|
"version": "0.6.7",
|
|
"license": "SEE LICENSE IN https://raw.githubusercontent.com/EvernodeXRPL/evernode-resources/main/license/evernode-license.pdf",
|
|
"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/ && cp ../evernode-license.pdf 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",
|
|
"dependencies": {
|
|
"commander": "9.4.0",
|
|
"evernode-js-client": "0.6.43"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "8.3.0"
|
|
},
|
|
"bin": {
|
|
"hpdevkit": "./index.js"
|
|
}
|
|
}
|