-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.61 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
{
"name": "@bufx/protocol",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"contracts:test": "forge test --root contracts",
"deploy:bufx:testnet": "bun run scripts/deployTelaranaRouter.ts",
"deploy:bufx:testnet:dry-run": "BUFX_DEPLOY_DRY_RUN=1 bun run scripts/deployTelaranaRouter.ts",
"deploy:forex-local:testnet": "bun run scripts/checkForexOnChainLocal.ts",
"deploy:ready:testnet": "forge build --root contracts && bun run scripts/checkTestnetReadiness.ts",
"deploy:smoke-request:testnet": "bun run scripts/buildTestnetSmokeRequest.ts",
"deploy:telarana:testnet": "bun run scripts/deployTelaranaRouter.ts",
"deploy:validate:testnet": "forge build --root contracts && bun run scripts/validateTestnetDeployment.ts",
"live:verify:foundry": "BUFX_RUN_LIVE_FORK_TESTS=true forge test --root contracts --match-contract BuFxLiveDeploymentTest -vv",
"security:check": "forge build --root contracts --sizes && forge test --root contracts",
"stage12:rewire:dry-run": "bun run scripts/stage12RewireForKeeperPath.ts",
"stage12:rewire": "bun run scripts/stage12RewireForKeeperPath.ts --broadcast",
"stage12:smoke": "bun run scripts/stage12SmokeKeeperRelay.ts",
"stage12:trace": "bun run scripts/stage12TraceCrossHubFlow.ts",
"telarana:request": "bun run scripts/buildTelaranaRequest.ts",
"sdk:build": "bun run --cwd packages/sdk build",
"sdk:test": "bun test packages/sdk/src",
"test": "bun run sdk:test && bun run sdk:build && bun run contracts:test"
},
"devDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"viem": "^2.30.0"
}
}