mirror of
https://github.com/tornadocash/snarkjs.git
synced 2024-11-01 07:45:43 +01:00
67 lines
1.7 KiB
JSON
67 lines
1.7 KiB
JSON
{
|
|
"name": "snarkjs",
|
|
"type": "module",
|
|
"version": "0.4.2",
|
|
"description": "zkSNARKs implementation in JavaScript",
|
|
"main": "./build/main.cjs",
|
|
"module": "./main.js",
|
|
"exports": {
|
|
"import": "./main.js",
|
|
"require": "./build/main.cjs"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"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": {
|
|
"@iden3/binfileutils": "0.0.8",
|
|
"blake2b-wasm": "https://github.com/jbaylina/blake2b-wasm.git",
|
|
"circom_runtime": "0.1.13",
|
|
"ejs": "^3.1.6",
|
|
"fastfile": "0.0.19",
|
|
"ffjavascript": "0.2.36",
|
|
"js-sha3": "^0.8.0",
|
|
"logplease": "^1.2.15",
|
|
"r1csfile": "0.0.32",
|
|
"readline": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^17.0.0",
|
|
"@rollup/plugin-inject": "^4.0.2",
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
"@rollup/plugin-node-resolve": "^11.1.0",
|
|
"@rollup/plugin-replace": "^2.3.4",
|
|
"@rollup/plugin-virtual": "^2.0.3",
|
|
"chai": "^4.2.0",
|
|
"eslint": "^6.8.0",
|
|
"mocha": "^7.1.1",
|
|
"rollup": "^2.36.2",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"rollup-plugin-visualizer": "^4.2.0"
|
|
}
|
|
}
|