@nori-zk/ethprocessor
Version:
zkApp for verifying SP1 Helios Nori proof and storing latest execution state root on Mina
67 lines (66 loc) • 2.93 kB
JSON
{
"name": "@nori-zk/ethprocessor",
"version": "4.0.4",
"description": "zkApp for verifying SP1 Helios Nori proof and storing latest execution state root on Mina",
"author": "Nori",
"license": "Apache-2.0",
"keywords": [
"mina-zkapp",
"mina-zk-app",
"mina-dapp",
"zkapp"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"type": "module",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && tsc",
"buildw": "tsc --watch",
"coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --runInBand",
"format": "prettier --write --ignore-unknown **/*",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --forceExit",
"test-ci": "npm run test -- -t \"should run the proof submission process correctly\" && npm run test -- -t \"should perform a series of proof submissions\" && npm run test -- -t \"should invoke a hash validation issue when we skip transition proofs\"",
"testw": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch --runInBand",
"lint": "npx eslint src/* --fix",
"eth": "npm run build && node --max-old-space-size=8192 --max-old-space-size=8192 --max-semi-space-size=128 --no-liftoff --no-wasm-tier-up --experimental-vm-modules --experimental-wasm-modules build/src/EthScript.js",
"deploy": "npm run build && node --max-old-space-size=8192 --max-old-space-size=8192 --max-semi-space-size=128 --no-liftoff --no-wasm-tier-up --experimental-vm-modules --experimental-wasm-modules build/src/bin/deploy.js",
"prove-and-submit": "npm run build && node --max-old-space-size=8192 --max-old-space-size=8192 --max-semi-space-size=128 --no-liftoff --no-wasm-tier-up --experimental-vm-modules --experimental-wasm-modules build/src/bin/proveAndSubmit.js",
"bake-vk-hashes": "npm run build && node --max-old-space-size=8192 --max-old-space-size=8192 --max-semi-space-size=128 --no-liftoff --no-wasm-tier-up --experimental-vm-modules --experimental-wasm-modules build/src/bin/bakeVkHashes.js"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.17.19",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.7.0",
"eslint-plugin-o1js": "^0.4.0",
"jest": "^29.7.0",
"mkdirp": "^3.0.1",
"ncp": "^2.0.0",
"prettier": "^2.3.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.4",
"typescript": "^5.4.5"
},
"peerDependencies": {
"o1js": "2.3.0"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@nori-zk/proof-conversion": "^0.5.8",
"dotenv": "^16.4.7",
"mina-attestations": "^0.5.2"
},
"files": [
"build"
]
}