{
    "name": "@nori-zk/ethprocessor",
    "version": "6.0.6",
    "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 --check --ignore-unknown **/*",
        "format:fix": "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/*",
        "lint:fix": "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.29.0",
        "@babel/preset-typescript": "^7.28.5",
        "@types/jest": "^30.0.0",
        "@types/node": "^25.2.3",
        "@typescript-eslint/eslint-plugin": "^8.55.0",
        "@typescript-eslint/parser": "^8.55.0",
        "eslint": "^9.39.2",
        "eslint-plugin-o1js": "^0.4.0",
        "jest": "^30.2.0",
        "mkdirp": "^3.0.1",
        "ncp": "^2.0.0",
        "npm-workspaces-publish-tool": "0.0.17",
        "prettier": "^3.8.1",
        "rimraf": "^6.1.2",
        "ts-jest": "^29.4.6",
        "typescript": "^5.9.3",
        "typescript-eslint": "^8.55.0"
    },
    "peerDependencies": {
        "o1js": "2.12.0"
    },
    "engines": {
        "node": ">=22.0.0"
    },
    "dependencies": {
        "@nori-zk/o1js-zk-utils": "0.0.21",
        "@nori-zk/proof-conversion": "0.8.19",
        "@nori-zk/pts-types": "5.0.0",
        "dotenv": "^17.2.4",
        "esm-iso-logger": "1.0.2",
        "mina-attestations": "^0.5.3"
    },
    "files": [
        "build"
    ]
}
