websnark/package.json
Micah Zoltu f0ddbf34b3 Adds esbuild & Dockerfile, skips a failing test.
* Adds esbuild as a bundler.
* Adds Dockerfile for deterministic building of the bundle.

Important Note:
The failing groth16 test fails on upstream, which means it is failing on the version used in Tornado Classic UI.
This is unfortunate, but if it is a critical bug at least it isn't an escalation compared to current state of things.
2024-12-02 16:23:52 +08:00

43 lines
868 B
JSON

{
"name": "websnark",
"version": "0.0.4",
"description": "big integer library to work in Zq",
"main": "index.js",
"scripts": {
"test": "node --test",
"build": "node tools/buildwasm.js"
},
"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": {
"snarkjs": "git+https://github.com/MicahZoltu/snarkjs.git#2c964b3fe6019e057acab04cc17705d1f7fdaf9a",
"wasmbuilder": "0.0.3",
"minimist": "1.2.8",
"esbuild": "0.24.0"
},
"dependencies": {
"big-integer": "1.6.52"
},
"overrides": {
"big-integer": "1.6.52"
},
"browser": {
"crypto": false,
"worker_threads": false
}
}