mirror of
https://github.com/dl-solarity/hardhat-zkit.git
synced 2026-05-01 03:00:04 -04:00
* Added context of the resolved circuit to the cache * Fixed typo in test * Reverted changes. Reverted context caching. Cached parsing result
121 lines
3.3 KiB
JSON
121 lines
3.3 KiB
JSON
{
|
|
"name": "@solarity/hardhat-zkit",
|
|
"version": "0.4.14",
|
|
"description": "The ultimate TypeScript environment for Circom development",
|
|
"main": "dist/src/index.js",
|
|
"types": "dist/src/index.d.ts",
|
|
"files": [
|
|
"dist/src/",
|
|
"src/",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/dl-solarity/hardhat-zkit.git"
|
|
},
|
|
"workspaces": [
|
|
"test/fixture-projects/*"
|
|
],
|
|
"keywords": [
|
|
"hardhat",
|
|
"hardhat-plugin",
|
|
"distributedlab",
|
|
"solarity",
|
|
"circom",
|
|
"snarkjs",
|
|
"zk",
|
|
"zkit"
|
|
],
|
|
"author": "Distributed Lab",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/dl-solarity/hardhat-zkit/issues"
|
|
},
|
|
"homepage": "https://github.com/dl-solarity/hardhat-zkit#readme",
|
|
"scripts": {
|
|
"prepare": "husky",
|
|
"compile": "npm run prepare-tests && npm run build",
|
|
"build": "tsc --build .",
|
|
"prepare-tests": "npm run compile --workspaces",
|
|
"test": "npm run test-docker",
|
|
"test-docker": "bash scripts/test-docker.sh",
|
|
"test-local": "mocha --recursive 'test/**/*.ts' --exit",
|
|
"coverage": "npm run coverage-docker",
|
|
"coverage-docker": "bash scripts/coverage-docker.sh",
|
|
"coverage-local": "nyc mocha --recursive 'test/**/*.ts' --exit",
|
|
"clean-tests": "npm run clean --workspaces",
|
|
"lint-fix": "prettier --write \"./**/*.ts\" && eslint \"{src,test}/**/*.{js,ts}\" --cache --fix",
|
|
"publish-to-npm": "npm run build && npm run lint-fix && npm publish ./ --access public"
|
|
},
|
|
"nyc": {
|
|
"reporter": [
|
|
"html",
|
|
"text"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"dependencies": {
|
|
"@distributedlab/circom-parser": "0.2.0",
|
|
"@solarity/zkit": "0.2.6",
|
|
"@solarity/zktype": "0.3.1",
|
|
"@wasmer/wasi": "0.12.0",
|
|
"chalk": "4.1.2",
|
|
"cli-progress": "3.12.0",
|
|
"cli-table3": "0.6.5",
|
|
"debug": "4.3.5",
|
|
"lodash": "4.17.21",
|
|
"ora": "5.4.1",
|
|
"resolve": "1.22.8",
|
|
"semver": "7.6.3",
|
|
"snarkjs": "0.7.5",
|
|
"uuid": "9.0.1",
|
|
"zod": "3.23.8",
|
|
"is-typed-array": "1.1.13",
|
|
"path-browserify": "1.0.1"
|
|
},
|
|
"peerDependencies": {
|
|
"hardhat": "^2.16.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nomicfoundation/hardhat-ethers": "3.0.5",
|
|
"@solarity/chai-zkit": "^0.2.5",
|
|
"@typechain/ethers-v6": "^0.5.1",
|
|
"@typechain/hardhat": "^9.1.0",
|
|
"@types/chai": "^4.3.12",
|
|
"@types/chai-as-promised": "^7.1.8",
|
|
"@types/cli-progress": "3.11.5",
|
|
"@types/debug": "4.1.12",
|
|
"@types/ejs": "^3.1.5",
|
|
"@types/fs-extra": "^11.0.4",
|
|
"@types/lodash": "4.17.5",
|
|
"@types/mocha": "^10.0.6",
|
|
"@types/resolve": "^1.20.6",
|
|
"@types/sinon": "^17.0.3",
|
|
"@types/snarkjs": "^0.7.8",
|
|
"@types/uuid": "^9.0.8",
|
|
"@typescript-eslint/eslint-plugin": "^6.20.0",
|
|
"@typescript-eslint/parser": "^6.20.0",
|
|
"chai": "^4.4.1",
|
|
"chai-as-promised": "^7.1.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-import-resolver-typescript": "^3.6.3",
|
|
"eslint-plugin-import": "^2.30.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"ethers": "6.11.1",
|
|
"hardhat": "2.20.1",
|
|
"husky": "^9.0.11",
|
|
"mocha": "^10.3.0",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "^3.2.5",
|
|
"sinon": "^19.0.2",
|
|
"ts-node": "^10.9.2",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"typechain": "^8.3.2",
|
|
"typescript": "5.3.3"
|
|
}
|
|
}
|