mirror of
https://github.com/erhant/circomkit.git
synced 2026-05-05 03:00:37 -04:00
69 lines
1.5 KiB
JSON
69 lines
1.5 KiB
JSON
{
|
|
"name": "circomkit",
|
|
"version": "0.0.9",
|
|
"description": "A Circom development environment",
|
|
"author": "erhant",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"LICENSE",
|
|
"README.md",
|
|
"package.json"
|
|
],
|
|
"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/",
|
|
"prepublish": "yarn build",
|
|
"cli": "yarn build && node ./dist/bin",
|
|
"test:all": "npx mocha",
|
|
"test": "npx mocha --grep",
|
|
"style": "yarn format && yarn lint",
|
|
"lint": "npx gts lint",
|
|
"format": "npx prettier --check ./**/*.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.4",
|
|
"@types/mocha": "^10.0.1",
|
|
"@types/node": "^18.11.18",
|
|
"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": {
|
|
"chai": "^4.3.7",
|
|
"circom_tester": "^0.0.19",
|
|
"loglevel": "^1.8.1",
|
|
"snarkjs": "^0.6.0"
|
|
},
|
|
"keywords": [
|
|
"circom",
|
|
"zk",
|
|
"zero knowledge",
|
|
"zero-knowledge",
|
|
"snarkjs",
|
|
"typescript",
|
|
"cli",
|
|
"tooling",
|
|
"blockchain"
|
|
]
|
|
}
|