mirror of
https://github.com/erhant/circomkit.git
synced 2026-01-12 05:58:03 -05:00
98 lines
2.4 KiB
JSON
98 lines
2.4 KiB
JSON
{
|
|
"name": "circomkit",
|
|
"version": "0.3.4",
|
|
"description": "A Circom testing & development environment",
|
|
"author": "erhant",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "pkgroll",
|
|
"prebuild": "rm -rf dist/",
|
|
"cli:nb": "node ./dist/cli.cjs",
|
|
"cli": "pnpm build && pnpm cli:nb",
|
|
"test": "jest",
|
|
"check": "npx tsc --noEmit",
|
|
"lint": "npx eslint '**/*.ts' && echo 'All good!'",
|
|
"format": "npx prettier --check ./src/**/*.ts ./tests/**/*.ts"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"bin": "./dist/cli.js",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.cts",
|
|
"exports": {
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.cjs"
|
|
},
|
|
"import": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"peerDependencies": {
|
|
"@types/snarkjs": "^0.7.x",
|
|
"snarkjs": "^0.7.x"
|
|
},
|
|
"dependencies": {
|
|
"circom_tester": "^0.0.23",
|
|
"commander": "^12.1.0",
|
|
"loglevel": "^1.9.2"
|
|
},
|
|
"devDependencies": {
|
|
"@commander-js/extra-typings": "^12.1.0",
|
|
"@nomicfoundation/hardhat-ethers": "^3.0.8",
|
|
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
|
|
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
|
|
"@typechain/ethers-v6": "^0.5.1",
|
|
"@typechain/hardhat": "^9.1.0",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^18.19.67",
|
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
"@typescript-eslint/parser": "^6.21.0",
|
|
"eslint": "^8.57.1",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^5.2.1",
|
|
"ethers": "^6.13.4",
|
|
"hardhat": "^2.22.16",
|
|
"jest": "^29.7.0",
|
|
"pkgroll": "^2.5.1",
|
|
"prettier": "^3.4.1",
|
|
"solc": "^0.8.28",
|
|
"ts-jest": "^29.2.5",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"prettier": {
|
|
"bracketSpacing": false,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5",
|
|
"arrowParens": "avoid",
|
|
"printWidth": 120
|
|
},
|
|
"keywords": [
|
|
"circom",
|
|
"zero knowledge",
|
|
"snarkjs",
|
|
"typescript",
|
|
"cli",
|
|
"tooling",
|
|
"blockchain"
|
|
],
|
|
"homepage": "https://github.com/erhant/circomkit#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/erhant/circomkit.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/erhant/circomkit/issues/"
|
|
}
|
|
}
|