mirror of
https://github.com/erhant/circomkit.git
synced 2026-05-05 03:00:37 -04:00
79 lines
1.9 KiB
JSON
79 lines
1.9 KiB
JSON
{
|
|
"name": "circomkit",
|
|
"version": "0.0.20",
|
|
"description": "A Circom development environment",
|
|
"author": "erhant",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"bin": "dist/bin/index.js",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"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/"
|
|
},
|
|
"scripts": {
|
|
"build": "npx tsc -p tsconfig.build.json",
|
|
"prebuild": "rimraf dist/",
|
|
"cli": "yarn build && node ./dist/bin",
|
|
"test": "npx mocha",
|
|
"pretest": "rimraf build/",
|
|
"check": "npx tsc --noEmit",
|
|
"style": "yarn format && yarn lint",
|
|
"lint": "npx eslint '**/*.ts' && echo 'All good!'",
|
|
"format": "npx prettier --check ./src/**/*.ts ./tests/**/*.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.4",
|
|
"@types/mocha": "^10.0.1",
|
|
"@types/mocha-each": "^2.0.0",
|
|
"@types/node": "^18.11.18",
|
|
"@types/snarkjs": "^0.7.7",
|
|
"@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",
|
|
"mocha": "^10.2.0",
|
|
"mocha-each": "^2.0.1",
|
|
"prettier": "^3.1.0",
|
|
"rimraf": "^5.0.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.3.2"
|
|
},
|
|
"dependencies": {
|
|
"chai": "^4.3.7",
|
|
"circom_tester": "^0.0.19",
|
|
"loglevel": "^1.8.1",
|
|
"snarkjs": "^0.7.0"
|
|
},
|
|
"prettier": {
|
|
"bracketSpacing": false,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5",
|
|
"arrowParens": "avoid",
|
|
"printWidth": 120
|
|
},
|
|
"keywords": [
|
|
"circom",
|
|
"zero knowledge",
|
|
"snarkjs",
|
|
"typescript",
|
|
"cli",
|
|
"tooling",
|
|
"blockchain"
|
|
]
|
|
}
|