-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.92 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.92 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
{
"name": "tl_gmp",
"version": "1.0.0",
"description": "time-locked general message passing with interoperability",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node index.js",
"setup": "node interchain/scripts/runStart.js",
"start": "node --no-warnings=ExperimentalWarning index.js",
"build": "rm -rf artifacts && npx hardhat clean && npx hardhat compile",
"deploy": "node interchain/scripts/runDeploy.js",
"check-balance": "node interchain/scripts/runCheckBalance.js",
"help": "node src/help.js"
},
"keywords": [
"gmp",
"general",
"message",
"passing",
"timelock",
"encryption",
"tlock",
"interchain",
"interoperability"
],
"author": "Panos Daveas",
"license": "ISC",
"dependencies": {
"@axelar-network/axelar-chains-config": "^1.2.0",
"@axelar-network/axelar-gmp-sdk-solidity": "^6.0.0",
"@axelar-network/axelar-local-dev": "^2.3.3",
"@axelar-network/axelarjs-sdk": "^0.17.2",
"axios": "^1.8.4",
"bip39": "^3.1.0",
"chalk": "^5.3.0",
"cli-spinners": "^2.9.2",
"console-clear": "^1.1.1",
"dotenv": "^16.4.7",
"drand-client": "^1.2.6",
"ethers": "^5.8.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.16",
"log-update": "^5.0.1",
"marked": "^15.0.8",
"marked-terminal": "^7.3.0",
"ora": "^8.0.1",
"path": "^0.12.7",
"tlock-js": "^0.9.0"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"chai": "^4.4.1",
"eslint": "^9.24.0",
"eslint-config-richardpringle": "^2.0.0",
"globals": "^16.0.0",
"hardhat": "^2.9.9",
"hardhat-gas-reporter": "^1.0.8",
"mocha": "^10.0.0",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.2"
},
"engines": {
"node": ">=16.0.0"
}
}