mirror of
https://github.com/zkopru-network/zkopru.git
synced 2026-01-13 16:37:54 -05:00
72 lines
2.2 KiB
JSON
72 lines
2.2 KiB
JSON
{
|
|
"name": "@zkopru/cli",
|
|
"version": "2.0.0-beta.8",
|
|
"license": "GPL-3.0-or-later",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"_moduleAliases": {
|
|
"~zk-wizard": "dist"
|
|
},
|
|
"bin": {
|
|
"zkopru-wallet": "dist/apps/wallet/cli.js",
|
|
"zkopru-coordinator": "dist/apps/coordinator/cli.js"
|
|
},
|
|
"keywords": [
|
|
"cli"
|
|
],
|
|
"preferGlobal": true,
|
|
"scripts": {
|
|
"prebuild": "shx mkdir -p dist",
|
|
"build": "tsc --build tsconfig.build.json",
|
|
"clean": "tsc --build tsconfig.build.json --clean && shx rm -rf coverage *.log junit.xml dist && jest --clearCache",
|
|
"link-modules": "link-module-alias",
|
|
"test": "jest",
|
|
"test:trace": "LOG_LEVEL=trace PRINT_LOG=true jest",
|
|
"test:unit": "jest test/unit",
|
|
"test:watch": "jest --watch",
|
|
"test:ci": "jest --coverage --ci --reporters='jest-junit'",
|
|
"coverage": "jest --coverage",
|
|
"coverage:show": "live-server coverage",
|
|
"wallet": "ts-node src/apps/wallet/cli.ts",
|
|
"coordinator": "ts-node src/apps/coordinator/cli.ts",
|
|
"dev:coordinator": "ts-node src/apps/coordinator/cli.ts --config coordinator.json",
|
|
"dev:wallet": "ts-node src/apps/wallet/cli.ts --config wallet.json"
|
|
},
|
|
"dependencies": {
|
|
"@zkopru/account": "file:../account",
|
|
"@zkopru/babyjubjub": "file:../babyjubjub",
|
|
"@zkopru/contracts": "file:../contracts",
|
|
"@zkopru/coordinator": "file:../coordinator",
|
|
"@zkopru/core": "file:../core",
|
|
"@zkopru/database": "file:../database",
|
|
"@zkopru/transaction": "file:../transaction",
|
|
"@zkopru/utils": "file:../utils",
|
|
"@zkopru/zk-wizard": "file:../zk-wizard",
|
|
"axios": "^0.21.1",
|
|
"big-integer": "^1.6.48",
|
|
"bip39": "^3.0.2",
|
|
"blessed": "^0.1.81",
|
|
"bn.js": "^5.2.0",
|
|
"chalk": "^4.0.0",
|
|
"figlet": "^1.4.0",
|
|
"fs-extra": "^9.0.0",
|
|
"node-ansiparser": "^2.2.0",
|
|
"node-ansiterminal": "^0.2.1-beta",
|
|
"node-fetch": "^2.6.0",
|
|
"pino-pretty": "^4.5.0",
|
|
"soltypes": "^1.3.5",
|
|
"tar": "^6.0.2",
|
|
"web3": "1.2.11",
|
|
"web3-core": "1.2.11",
|
|
"web3-eth-contract": "1.2.11",
|
|
"web3-utils": "1.2.11",
|
|
"yargs": "^15.3.1"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|