-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.02 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
{
"name": "QS-PPI",
"version": "1.0.0",
"description": "Quantum-Safe Privacy-Preserving Income Verification - ZKP using Circom/SnarkJS with W3C VC 2.0 compliance",
"main": "src/index.js",
"scripts": {
"compile": "circom circuits/incomeProof.circom --r1cs --wasm --sym -o artifacts/ -l node_modules",
"setup": "node scripts/setup.js",
"prove": "node scripts/prove.js",
"verify": "node scripts/verify.js",
"test": "node tests/testQSPPI.js",
"test:vc": "node tests/testVC.js",
"test:pq": "node tests/testPQ.js",
"test:security": "node tests/testSecurityAudit.js",
"test:all": "npm test && npm run test:vc && npm run test:pq && npm run test:security",
"frontend": "node frontend/server.js"
},
"keywords": ["zkp", "circom", "snarkjs", "w3c-vc", "post-quantum", "ml-dsa", "proof-of-income"],
"author": "Rahul Pal",
"license": "MIT",
"dependencies": {
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"snarkjs": "^0.7.0",
"ffjavascript": "^0.3.0"
},
"devDependencies": {}
}