-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.6 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
{
"name": "wafer",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "InfraFi liquidity for DePIN on Hedera — a Solidity vault (HSCS) managing HTS tokens, settled in native HBAR.",
"license": "MIT",
"engines": {
"node": ">=22"
},
"scripts": {
"compile": "TS_NODE_PROJECT=tsconfig.hardhat.json hardhat compile",
"test": "TS_NODE_PROJECT=tsconfig.hardhat.json hardhat test",
"typecheck": "tsc -p tsconfig.hardhat.json --noEmit",
"deploy": "TS_NODE_PROJECT=tsconfig.hardhat.json hardhat run scripts/deploy.ts --network testnet",
"smoke": "TS_NODE_PROJECT=tsconfig.hardhat.json hardhat run scripts/smoke.ts --network testnet",
"smoke:hss": "TS_NODE_PROJECT=tsconfig.hardhat.json hardhat run scripts/smoke-hss.ts --network testnet",
"redeploy-mock": "TS_NODE_PROJECT=tsconfig.hardhat.json hardhat run scripts/redeploy-mock.ts --network testnet",
"verify": "TS_NODE_PROJECT=tsconfig.hardhat.json hardhat verify --network testnet",
"resolve-operator": "tsx scripts/resolve-operator.ts"
},
"dependencies": {
"@hashgraph/sdk": "^2.62.0",
"@hiero-ledger/hiero-contracts": "0.1.2",
"@openzeppelin/contracts": "^5.6.1",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.1.3",
"@types/chai": "^4.3.20",
"@types/node": "^22.10.2",
"chai": "^4.5.0",
"hardhat": "^2.28.6",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"protobufjs"
]
}
}