Files
circomkit/package.json
2023-06-03 16:08:09 +03:00

84 lines
2.2 KiB
JSON

{
"name": "circomkit",
"version": "0.0.2",
"description": "A Circom development environment",
"author": "erhant",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"files": [
"dist"
],
"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": "yarn build:clean && npx tsc -p tsconfig.build.json",
"build:clean": "rimraf dist/",
"build:copy": "copyfiles bin/* bin/**/* dist",
"prepublish": "yarn build",
"cli": "yarn build && node ./dist/bin",
"test:all": "npx mocha",
"test": "npx mocha --grep",
"lint": "npx gts lint",
"style": "yarn format && yarn lint",
"type": "./scripts/cli.sh -f type -c",
"instantiate": "./scripts/cli.sh -f instantiate -c",
"compile": "./scripts/cli.sh -f compile -c",
"clean": "./scripts/cli.sh -f clean -c",
"contract": "./scripts/cli.sh -f contract -c",
"calldata": "./scripts/cli.sh -f calldata -c",
"debug": "./scripts/cli.sh -f debug -c",
"setup": "./scripts/cli.sh -f setup -c",
"keygen": "./scripts/cli.sh -f keygen -c",
"witness": "./scripts/cli.sh -f witness -c",
"prove": "./scripts/cli.sh -f prove -c",
"verify": "./scripts/cli.sh -f verify -c",
"usage": "./scripts/cli.sh -f help",
"format": "npx prettier --check ./**/*.ts"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/ejs": "^3.1.2",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"copyfiles": "^2.4.1",
"gts": "^3.1.1",
"mocha": "^10.2.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"optionalDependencies": {
"circomlib": "^2.0.5"
},
"dependencies": {
"circom_tester": "^0.0.19",
"ejs": "^3.1.9"
},
"peerDependencies": {
"snarkjs": "^0.6.0",
"chai": "^4.3.7"
},
"keywords": [
"circom",
"zk",
"zero knowledge",
"snarkjs",
"typescript",
"cli",
"tooling",
"blockchain",
"ethereum"
]
}