{
    "name": "@nori-zk/ethprocessor",
    "version": "5.0.5",
    "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/index.node.js",
    "types": "build/index.node.d.ts",
    "exports": {
        "./node": {
            "import": "./build/index.node.js"
        },
        "./browser": {
            "import": "./build/index.browser.js"
        }
    },
    "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",
        "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/bin/deploy.js",
        "update-store-hash": "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/bin/updateStoreHash.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/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/bin/bakeVkHashes.js && npm run build"
    },
    "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",
        "npm-workspaces-publish-tool": "^0.0.8"
    },
    "peerDependencies": {
        "o1js": "2.3.0"
    },
    "engines": {
        "node": ">=22.0.0"
    },
    "dependencies": {
        "@nori-zk/o1js-zk-utils": "0.0.11",
        "@nori-zk/proof-conversion": "^0.5.14",
        "dotenv": "^16.4.7",
        "mina-attestations": "^0.5.2"
    },
    "files": [
        "build"
    ]
}