mirror of
https://github.com/anonklub/anonklub.git
synced 2026-01-09 18:07:55 -05:00
* fix: build all wasm packages * remove eth membrship worker filter * chore: update package.json * refactor: add wasm-pack and rimraf deps * chore: update `.tool-versions`
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "@anonklub/spartan-ecdsa-wasm",
|
|
"version": "1.1.0",
|
|
"author": "0xisk <0xisk@proton.me>",
|
|
"keywords": [
|
|
"wasm",
|
|
"spartan",
|
|
"ecdsa",
|
|
"zero knowledge",
|
|
"zk",
|
|
"zkp",
|
|
"proof",
|
|
"anonymity",
|
|
"ethereum",
|
|
"rust"
|
|
],
|
|
"license": "MIT",
|
|
"repository": "https://github.com/anonklub/anonklub/tree/main/%40anonklub/cli",
|
|
"homepage": "https://github.com/anonklub/anonklub",
|
|
"bugs": "https://github.com/anonklub/anonklub/issues",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist/**/*.{js,ts,wasm}",
|
|
"README.md",
|
|
"CHANGELOG.md"
|
|
],
|
|
"module": "dist/index.js",
|
|
"sideEffects": "dist/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"compile": "rimraf dist && wasm-pack build . --release --target bundler --out-dir dist --out-name index --scope anonklub",
|
|
"format.cargo": "cargo fmt -- --check",
|
|
"format.cargo.fix": "cargo fmt",
|
|
"lint.cargo": "cargo clippy",
|
|
"lint.cargo.fix": "cargo clippy --fix",
|
|
"prepack": "pnpm compile"
|
|
},
|
|
"dependencies": {
|
|
"pako": "^2.1.0",
|
|
"spartan-ecdsa-circuits": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "5.2.2"
|
|
}
|
|
}
|