Files
circomkit/package.json
Erhan f210e06030 Major Refactors (#82)
* migrate tests under their own folder

* more refactors + `pkgroll` added

* todo commander

* migrate CLI to `commander`

* fixed proof tester types

* added `list` command

* use jest, use pnpm, more refactors & renames & typings

* remove redundant hardhats, better jest

* up version
2024-05-18 22:02:47 +03:00

98 lines
2.4 KiB
JSON

{
"name": "circomkit",
"version": "0.2.0",
"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.19",
"commander": "^12.0.0",
"loglevel": "^1.8.1"
},
"devDependencies": {
"@commander-js/extra-typings": "^12.0.1",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"ethers": "^6.4.0",
"hardhat": "^2.14.0",
"jest": "^29.7.0",
"pkgroll": "^2.0.2",
"prettier": "^3.1.0",
"solc": "^0.8.25",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.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/"
}
}