mirror of
https://github.com/zkopru-network/zkopru.git
synced 2026-01-14 08:48:02 -05:00
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"name": "@zkopru/utils",
|
|
"version": "2.0.0-beta.8",
|
|
"license": "GPL-3.0-or-later",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"_moduleAliases": {
|
|
"~utils": "dist"
|
|
},
|
|
"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:integration": "jest test/unit",
|
|
"test:watch": "jest --watch",
|
|
"test:ci": "jest --coverage --ci --reporters='jest-junit'",
|
|
"coverage": "jest --coverage",
|
|
"coverage:show": "live-server coverage",
|
|
"dev": "ts-node-dev -r tsconfig-paths/register src/index.ts",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.21.1",
|
|
"bn.js": "^5.2.0",
|
|
"circom_runtime": "0.1.13",
|
|
"ffjavascript": "0.2.22",
|
|
"fs-extra": "^9.0.0",
|
|
"pino": "^6.2.0",
|
|
"pino-pretty": "^4.0.0",
|
|
"prompts": "^2.3.2",
|
|
"snarkjs": "0.3.33",
|
|
"soltypes": "^1.3.5",
|
|
"web3-eth-abi": "1.2.11",
|
|
"web3-utils": "1.2.11"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|