1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/zokrates_js/package.json
2023-01-23 03:28:06 +01:00

51 lines
1.2 KiB
JSON

{
"name": "zokrates-js",
"version": "1.1.4",
"module": "index.js",
"main": "index-node.js",
"description": "JavaScript bindings for ZoKrates",
"contributors": [
"Darko Macesic <darem966@gmail.com>",
"Thibaut Schaeffer <thibaut@schaeff.fr>"
],
"keywords": [
"zokrates",
"snarks",
"zksnarks"
],
"license": "GPLv3",
"files": [
"index.js",
"index-node.js",
"index.d.ts",
"wasm.js",
"metadata.js"
],
"types": "index.d.ts",
"type": "module",
"exports": {
"node": "./index-node.js",
"default": "./index.js"
},
"scripts": {
"wasm-pack": "wasm-pack build --out-name index --target web",
"prebuild": "npm install",
"build": "npm run wasm-pack -- --release && node patch.js",
"build:dev": "npm run wasm-pack -- --dev && node patch.js",
"pretest": "npm run build:dev",
"test": "npm run run-tests",
"run-tests": "mocha --timeout 100000 --recursive tests"
},
"devDependencies": {
"acorn": "^8.8.1",
"astring": "^1.8.4",
"dree": "^3.4.3",
"mocha": "^9.2.0",
"rimraf": "^3.0.2",
"snarkjs": "^0.4.25",
"wasm-pack": "^0.10.2"
},
"dependencies": {
"pako": "^2.1.0"
}
}