forked from karagozemin/OverSync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 819 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 819 Bytes
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
{
"name": "@oversync/e2e",
"version": "0.1.0",
"description": "Cross-chain differential test harness (EVM HTLCEscrow ↔ Soroban oversync-htlc). Verifies the sha256 hashlock and preimage semantics round-trip across both chain clients using the shared @oversync/sdk secret helpers.",
"type": "module",
"private": true,
"scripts": {
"pretest": "cd ../contracts && pnpm hardhat compile",
"test": "pnpm --filter @oversync/contracts compile && vitest run",
"test:watch": "vitest",
"load-test": "tsx load-test/harness.ts"
},
"dependencies": {
"@oversync/sdk": "workspace:*",
"ethers": "^6.9.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@viem/anvil": "^0.0.10",
"tsx": "^4.19.0",
"typescript": "^5.3.0",
"viem": "^2.31.7",
"vitest": "^2.1.0"
}
}