2019-04-09 12:37:39 -07:00
|
|
|
{
|
|
|
|
"name": "websnark",
|
2019-06-25 15:53:12 +02:00
|
|
|
"version": "0.0.4",
|
2019-04-09 12:37:39 -07:00
|
|
|
"description": "big integer library to work in Zq",
|
2024-12-21 21:16:25 +00:00
|
|
|
"main": "index.js",
|
|
|
|
"module": "build/bundle.mjs",
|
2019-04-09 12:37:39 -07:00
|
|
|
"scripts": {
|
2024-11-28 21:01:12 +08:00
|
|
|
"test": "node --test",
|
|
|
|
"build": "node tools/buildwasm.js"
|
2019-04-09 12:37:39 -07:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"bigint",
|
|
|
|
"bignum",
|
|
|
|
"biginteger",
|
|
|
|
"zq",
|
|
|
|
"elliptic",
|
|
|
|
"curve",
|
|
|
|
"prime",
|
|
|
|
"field"
|
|
|
|
],
|
|
|
|
"author": "Jordi Baylina",
|
|
|
|
"license": "GPL-3.0",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/iden3/websnark.git"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-11-28 21:01:12 +08:00
|
|
|
"snarkjs": "git+https://github.com/MicahZoltu/snarkjs.git#2c964b3fe6019e057acab04cc17705d1f7fdaf9a",
|
|
|
|
"wasmbuilder": "0.0.3",
|
2024-12-02 16:23:52 +08:00
|
|
|
"minimist": "1.2.8",
|
|
|
|
"esbuild": "0.24.1"
|
2024-11-28 21:01:12 +08:00
|
|
|
},
|
2024-12-21 21:16:25 +00:00
|
|
|
"dependencies": {
|
|
|
|
"big-integer": "1.6.52"
|
|
|
|
},
|
2024-11-28 21:01:12 +08:00
|
|
|
"overrides": {
|
|
|
|
"big-integer": "1.6.52"
|
2024-12-02 16:23:52 +08:00
|
|
|
},
|
|
|
|
"browser": {
|
|
|
|
"crypto": false,
|
|
|
|
"worker_threads": false
|
2019-04-09 12:37:39 -07:00
|
|
|
}
|
|
|
|
}
|