mirror of
https://github.com/EvernodeXRPL/hp-devkit.git
synced 2026-04-29 15:37:58 +00:00
30 lines
736 B
JSON
30 lines
736 B
JSON
{
|
|
"name": "hpdevkit",
|
|
"version": "0.6.2",
|
|
"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"
|
|
}
|
|
}
|