mirror of
https://github.com/pezkuwichain/pezkuwi-vanitygen.git
synced 2026-04-21 23:47:58 +00:00
6a860cecfe
- Replace all @polkadot/* dependencies with @pezkuwi/* - Update package.json metadata for Pezkuwichain - Update CLI command from polkadot-js-vanitygen to pezkuwi-vanitygen - Update network options: bizinikiwi, pezkuwi, dicle, zagros - Set default network to pezkuwi (ss58Format: 42) - Update documentation and README - Build and test successful - Version 1.0.0
39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"author": "Pezkuwichain Team (forked from Jaco Greeff <jacogr@gmail.com>)",
|
|
"bugs": "https://github.com/pezkuwichain/pezkuwi-vanitygen/issues",
|
|
"description": "A vanity address generator for Pezkuwichain",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"homepage": "https://github.com/pezkuwichain/pezkuwi-vanitygen#readme",
|
|
"license": "Apache-2.0",
|
|
"name": "@pezkuwi/vanitygen",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/pezkuwichain/pezkuwi-vanitygen.git"
|
|
},
|
|
"sideEffects": false,
|
|
"type": "module",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"pezkuwi-vanitygen": "./runcli.mjs"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"clean": "rm -rf ./*.js ./*.d.ts ./*.js.map",
|
|
"prepublishOnly": "npm run clean && npm run build"
|
|
},
|
|
"dependencies": {
|
|
"@pezkuwi/util": "^14.0.11",
|
|
"@pezkuwi/util-crypto": "^14.0.11",
|
|
"tslib": "^2.8.1",
|
|
"yargs": "^17.7.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.5",
|
|
"@types/yargs": "^17.0.33",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|