-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 3.58 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "walletwall-vault",
"version": "0.10.6",
"description": "Research prototype: hybrid classical (ECDSA) + post-quantum withdrawal-authorization vault. Not audited. Testnet/local only.",
"type": "module",
"main": "index.js",
"engines": {
"node": ">=22.10.0"
},
"scripts": {
"test": "hardhat test",
"compile": "hardhat compile",
"clean": "hardhat clean",
"security:audit": "npm audit --audit-level=moderate --omit=dev",
"security:audit:all": "npm audit --audit-level=moderate",
"coverage": "hardhat test --coverage",
"deploy": "hardhat run scripts/deploy.ts",
"deploy:sepolia": "hardhat run scripts/deploy.ts --network sepolia",
"deploy:base-sepolia": "hardhat run scripts/deploy.ts --network base-sepolia",
"demo": "hardhat run scripts/demo-local.ts",
"demo:simulator": "hardhat run scripts/demo-simulator.ts",
"deploy:simulator": "hardhat run scripts/deploy-simulator.ts",
"deploy:simulator:sepolia": "hardhat run scripts/deploy-simulator.ts --network sepolia",
"attestor:demo": "tsx scripts/attestor-cli.ts demo",
"attestor:verify": "tsx scripts/attestor-cli.ts verify",
"attestor:fixtures": "tsx scripts/generate-attestor-fixture.ts",
"evidence:fixtures": "tsx scripts/generate-evidence-fixture.ts",
"proof:artifact": "tsx scripts/generate-proof-artifact.ts",
"proof:artifact:validate": "tsx scripts/generate-proof-artifact.ts --validate",
"evidence:manifest": "tsx scripts/generate-mldsa-evidence-manifest.ts",
"validate:evidence": "tsx scripts/generate-mldsa-evidence-manifest.ts --validate",
"verifier:verify": "tsx scripts/pq-verifier-cli.ts verify",
"hosted:demo": "tsx scripts/hosted-verifier-demo.ts",
"sp1:smoke": "tsx scripts/sp1-smoke.ts",
"sp1:proof-input": "tsx scripts/generate-sp1-proof-input.ts",
"validate:sp1-input": "tsx scripts/generate-sp1-proof-input.ts --validate",
"zk:adapter": "tsx scripts/generate-zk-verifier-adapter.ts",
"validate:zk-adapter": "tsx scripts/generate-zk-verifier-adapter.ts --validate",
"zk:adapter:response": "tsx scripts/generate-zk-adapter-evidence-response.ts",
"validate:zk-response": "tsx scripts/generate-zk-adapter-evidence-response.ts --validate",
"static:artifact": "tsx scripts/generate-static-evidence-artifact.ts",
"validate:static-artifact": "tsx scripts/generate-static-evidence-artifact.ts --validate",
"static:publish:prepare": "tsx scripts/prepare-static-evidence-publish.ts",
"pretypecheck": "hardhat compile",
"typecheck": "tsc --noEmit",
"lint": "solhint \"contracts/**/*.sol\"",
"format": "prettier --write \"contracts/**/*.sol\" \"{src,scripts,test,pqc}/**/*.ts\"",
"format:check": "prettier --check \"contracts/**/*.sol\" \"{src,scripts,test,pqc}/**/*.ts\"",
"validate:deployments": "tsx scripts/validate-deployments.ts",
"validate:reproducibility": "tsx scripts/validate-reproducibility.ts"
},
"keywords": [
"solidity",
"pqc",
"ethereum",
"vault",
"quantum-safe"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox-mocha-ethers": "^3.0.7",
"@openzeppelin/contracts": "^5.1.0",
"@typechain/ethers-v6": "^0.5.1",
"@types/mocha": "^10.0.10",
"chai": "^6.2.2",
"dotenv": "^17.4.2",
"ethers": "^6.14.0",
"hardhat": "^3.9.1",
"prettier": "^3.9.5",
"prettier-plugin-solidity": "^2.3.1",
"solhint": "^6.2.3",
"tsx": "^4.19.2",
"typechain": "^8.3.2",
"typescript": "^7.0.2"
},
"dependencies": {
"@noble/post-quantum": "^0.6.1"
},
"overrides": {
"js-yaml": ">=4.2.0"
}
}