-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1.21 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
{
"name": "opaque-stellar",
"private": true,
"type": "module",
"scripts": {
"deploy": "tsx scripts/deploy-contracts.ts",
"deploy:testnet": "tsx scripts/deploy-contracts.ts --network testnet",
"deploy:mainnet": "tsx scripts/deploy-contracts.ts --network mainnet",
"verify:deployment": "tsx scripts/verify-deployment-manifest.ts",
"verify:deployment:strict": "tsx scripts/verify-deployment-manifest.ts --strict",
"verify:security-audit": "tsx scripts/verify-security-audit.ts --network mainnet",
"update:manifest-wasm": "tsx scripts/update-manifest-wasm-hashes.ts",
"build:scanner": "tsx scripts/build-scanner-wasm.ts",
"fetch:circuits": "tsx scripts/fetch-circuit-artifacts.ts",
"verify:artifacts": "tsx scripts/verify-artifact-manifest.ts",
"update:artifacts": "tsx scripts/update-artifact-manifest.ts --sync-deployments --embedded-vk",
"prepare:frontend": "tsx scripts/prepare-frontend-artifacts.ts",
"test:circuits": "npm --prefix circuits run test:regression --",
"soak": "tsx scripts/soak-test.ts",
"soak:short": "SOAK_DURATION=5m tsx scripts/soak-test.ts"
},
"devDependencies": {
"@types/node": "^22.15.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}