mirror of
https://github.com/CryptKeeperZK/snarkjs.git
synced 2026-01-08 15:03:50 -05:00
78 lines
2.1 KiB
JSON
78 lines
2.1 KiB
JSON
{
|
|
"name": "@cryptkeeperzk/snarkjs",
|
|
"type": "module",
|
|
"version": "0.7.2",
|
|
"description": "zkSNARKs implementation in JavaScript, is a forked version from the main `iden3/snarkjs` repo to make it work with CryptKeeper Browser Extension using `@cryptkeeperzk/ffjavascript` forked version.",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"main": "./build/main.cjs",
|
|
"module": "./main.js",
|
|
"exports": {
|
|
"import": "./main.js",
|
|
"require": "./build/main.cjs"
|
|
},
|
|
"files": [
|
|
"COPYING",
|
|
"README.md",
|
|
"build/",
|
|
"cli.js",
|
|
"main.js",
|
|
"src/",
|
|
"templates/"
|
|
],
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"testv12": "mocha test/fflonk.test.js test/fullprocess.js test/keypar_test.js test/polynomial.test.js",
|
|
"build": "rollup -c config/rollup.cjs.config.js",
|
|
"buildcli": "rollup -c config/rollup.cli.config.js",
|
|
"buildiife": "BROWSER=true rollup -c config/rollup.iife.config.js",
|
|
"buildiifemin": "BROWSER=true rollup -c config/rollup.iife_min.config.js"
|
|
},
|
|
"bin": {
|
|
"snarkjs": "build/cli.cjs"
|
|
},
|
|
"directories": {
|
|
"templates": "templates"
|
|
},
|
|
"keywords": [
|
|
"zksnark",
|
|
"zcash",
|
|
"ethereum",
|
|
"zero",
|
|
"knowlage",
|
|
"cryptography",
|
|
"circuit"
|
|
],
|
|
"author": "Jordi Baylina",
|
|
"license": "GPL-3.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/iden3/snarkjs.git"
|
|
},
|
|
"dependencies": {
|
|
"@cryptkeeperzk/ejs": "^3.1.6",
|
|
"@cryptkeeperzk/ffjavascript": "^0.2.59",
|
|
"@iden3/binfileutils": "0.0.11",
|
|
"bfj": "^7.0.2",
|
|
"blake2b-wasm": "^2.4.0",
|
|
"circom_runtime": "0.1.24",
|
|
"fastfile": "0.0.20",
|
|
"js-sha3": "^0.8.0",
|
|
"logplease": "^1.2.15",
|
|
"r1csfile": "0.0.47"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^22.0.0",
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
"@rollup/plugin-node-resolve": "^14.0.0",
|
|
"@rollup/plugin-replace": "^4.0.0",
|
|
"@rollup/plugin-virtual": "^2.0.3",
|
|
"eslint": "^8.7.0",
|
|
"mocha": "^10.2.0",
|
|
"rollup": "^2.36.2",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"rollup-plugin-visualizer": "^5.6.0"
|
|
}
|
|
}
|