Files
circomkit/package.json
Erhan Tezcan 61a79deb65 setup done
2023-02-18 19:59:06 +03:00

29 lines
744 B
JSON

{
"name": "circom-typescript-starter",
"version": "0.0.1",
"description": "An opinionated development environment for developing circuits using Circom and TypeScript!",
"main": "index.js",
"license": "MIT",
"scripts": {
"clean": "rm -fR dist",
"build": "npm run clean && tsc -p .tsconfig.json",
"test": "npx mocha"
},
"author": "erhant",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"chai": "^4.3.7",
"circom_tester": "^0.0.19",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"ethers": "^6.0.4",
"gts": "^3.1.1",
"mocha": "^10.2.0",
"snarkjs": "^0.5.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}