-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@orbinum/proof-generator",
"version": "3.7.0",
"description": "ZK-SNARK proof generator for Orbinum. Combines snarkjs (witness) with arkworks WASM (proof generation) to produce 128-byte Groth16 proofs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "Orbinum",
"license": "GPL-3.0-or-later OR Apache-2.0",
"repository": {
"url": "git+https://github.com/orbinum/proof-generator.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"typecheck": "tsc --project tsconfig.test.json --noEmit",
"lint": "tsc --project tsconfig.test.json --noEmit",
"check": "pnpm lint && pnpm typecheck && pnpm format:check && pnpm build && pnpm test",
"prepublishOnly": "pnpm check",
"clean": "rm -rf dist node_modules package-lock.json pnpm-lock.yaml"
},
"keywords": [
"zksnark",
"groth16",
"circom",
"snarkjs",
"arkworks",
"privacy",
"zk-proof",
"orbinum"
],
"dependencies": {
"@orbinum/circuits": "0.9.0",
"@orbinum/groth16-proofs": "3.0.0",
"circomlibjs": "0.1.7",
"snarkjs": "0.7.6"
},
"devDependencies": {
"@types/circomlibjs": "0.1.6",
"@types/node": "25.5.2",
"@types/snarkjs": "0.7.9",
"@vitest/coverage-v8": "4.1.3",
"prettier": "3.8.1",
"typescript": "6.0.2",
"vitest": "4.1.3"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be"
}