-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
68 lines (68 loc) · 2.64 KB
/
package.json
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
{
"name": "@axelar-network/interchain-token-service",
"version": "2.0.1",
"main": "index.js",
"scripts": {
"build": "npx hardhat clean && npx hardhat compile && npm run copy:interfaces",
"codegen:ts": "npm run clean:ts && npx tsx node_modules/@axelarjs/evm/scripts/codegen --src artifacts/contracts --out typescript/contracts --exclude test",
"clean:ts": "rm -rf typescript",
"build:ts": "npm run codegen:ts",
"test": "npx hardhat test",
"copy:interfaces": "rm -rf interfaces && mkdir interfaces && cp artifacts/contracts/interfaces/*/*.json interfaces/ && rm interfaces/*.dbg.json",
"clean:artifacts": "rm -rf artifacts/build-info artifacts/*/test artifacts/contracts/*/*/*.dbg.json",
"lint": "solhint 'contracts/**/*.sol' && eslint 'scripts/**/*.js' && eslint 'test/**/*.js'",
"prettier": "prettier --write 'contracts/**/*.sol' 'scripts/**/*.js' 'test/**/*.js' '*.js' 'package.json' '.solhint.json' '.prettierrc' '.github/**/*.yaml'",
"flatten": "sh scripts/flatten-contracts.sh",
"coverage": "cross-env COVERAGE=true hardhat coverage",
"release": "npm run build && npm run build:ts && npm run flatten && npm run clean:artifacts && changeset publish",
"release-snapshot": "npm run build && npm run build:ts && npm run flatten && npm run clean:artifacts && npm version 0.0.0-snapshot.$(git rev-parse --short HEAD) --git-tag-version=false && npm publish --no-git-checks --tag snapshot --access public",
"cs": "changeset"
},
"keywords": [
"axelar",
"ethereum"
],
"author": "axelar-network",
"license": "MIT",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@axelar-network/axelar-cgp-solidity": "6.4.0",
"@axelar-network/axelar-gmp-sdk-solidity": "6.0.4"
},
"devDependencies": {
"@axelar-network/axelar-chains-config": "^1.3.0",
"@axelarjs/evm": "^0.2.1",
"@changesets/cli": "^2.27.9",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@tsconfig/strictest": "^2.0.2",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"eslint": "^8.43.0",
"eslint-config-richardpringle": "^2.0.0",
"hardhat": "^2.22.15",
"hardhat-contract-sizer": "^2.10.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solidity-docgen": "^0.6.0-beta.36"
},
"description": "Interchain token service for EVM chains to faciliate interchain token transfers and contract calls",
"files": [
"artifacts",
"contracts",
"interfaces",
"docs",
"scripts",
"typescript",
"DESIGN.md",
"README.md",
"hardhat.config.js"
]
}