@orbinum/proof-generator 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orbinum/proof-generator",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "High-performance ZK-SNARK proof generator for Orbinum privacy protocol. Hybrid TypeScript/Rust/WASM library combining snarkjs (witness calculation) with arkworks (proof generation) to produce 128-byte compressed Groth16 proofs compatible with Substrate runtime.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
40
40
|
"lint": "tsc --noEmit",
|
|
41
41
|
"prepare": "husky",
|
|
42
|
-
"prepublishOnly": "npm run build
|
|
42
|
+
"prepublishOnly": "npm run build && npm run lint && npm test",
|
|
43
43
|
"clean": "rm -rf dist pkg circuits node_modules && cd rust && cargo clean",
|
|
44
44
|
"release": "npm version patch && git push --follow-tags",
|
|
45
45
|
"release:minor": "npm version minor && git push --follow-tags",
|