{
  "name": "hardhat-noir",
  "version": "0.6.0",
  "description": "Hardhat plugin for Noir language",
  "repository": "github:olehmisar/hardhat-noir",
  "author": "Oleh Misarosh <olehmisar@gmail.com>",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "keywords": [
    "ethereum",
    "smart-contracts",
    "hardhat",
    "hardhat-plugin",
    "noir",
    "aztec",
    "zero knowledge",
    "zk"
  ],
  "files": [
    "dist/src/",
    "src/",
    "LICENSE",
    "README.md"
  ],
  "devDependencies": {
    "@noir-lang/noir_js": "1.0.0-beta.11",
    "@nomicfoundation/hardhat-ethers": "^3.0.8",
    "@types/chai": "^5.0.0",
    "@types/mocha": "^10.0.9",
    "@types/node": "^24.7.1",
    "chai": "^4.2.0",
    "hardhat": "^2.0.0",
    "mocha": "^10.7.3",
    "prettier": "3.3.3",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.3"
  },
  "peerDependencies": {
    "hardhat": "^2.0.0"
  },
  "dependencies": {
    "@aztec/bb.js": "^1.2.0",
    "glob": "^11.0.0",
    "zod": "^3.23.8"
  },
  "scripts": {
    "lint:fix": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
    "lint": "tsc --noEmit --skipLibCheck && prettier --check 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
    "test": "mocha --exit --recursive 'test/**/*.test.ts' && pnpm lint",
    "build": "rm -rf dist && tsc",
    "watch": "tsc -w"
  }
}