circomlibjs/package.json

48 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2021-10-06 11:28:14 +02:00
{
"name": "circomlibjs",
2021-10-30 13:57:29 +02:00
"type": "module",
"main": "./build/main.cjs",
"module": "./main.js",
2021-10-30 13:57:29 +02:00
"exports": {
"import": "./main.js",
"require": "./build/main.cjs"
2021-10-30 13:57:29 +02:00
},
2024-04-15 18:18:09 +02:00
"version": "0.1.8",
"description": "Javascript library to work with circomlib",
2021-10-06 11:28:14 +02:00
"scripts": {
"test": "node --test",
2021-10-30 13:57:29 +02:00
"poseidonOptimizeConstants": "node tools/poseidon_optimize_constants.js",
"build": "node ./esbuild.mjs && rollup -c rollup.cjs.config.js"
2021-10-06 11:28:14 +02:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/iden3/circomlibjs.git"
},
"keywords": [
"circom",
"circomlib",
"iden3",
"snarkjs",
"snark",
"zero",
"knowledge"
],
"author": "Jordi Baylina",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/iden3/circomlibjs/issues"
},
"homepage": "https://github.com/iden3/circomlibjs#readme",
"devDependencies": {
"esbuild": "0.24.0",
"esbuild-plugin-polyfill-node": "0.3.0",
"rollup": "^4.28.1"
},
"dependencies": {
"@noble/hashes": "1.6.1",
"blake-hash": "2.0.0",
"blake2b": "2.1.3",
"ffjavascript": "0.3.0"
2021-10-06 11:28:14 +02:00
}
}