-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
72 lines (72 loc) · 1.76 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
69
70
71
72
{
"name": "@axelarjs/evm",
"version": "0.2.7",
"publishConfig": {
"access": "public"
},
"description": "EVM clients & utils",
"repository": {
"type": "git",
"url": "git+https://github.com/axelarnetwork/axelarjs"
},
"files": [
"./build",
"./contracts",
"./bin",
"./scripts",
"./index.js",
"./index.d.ts",
"./clients.js",
"./clients.d.ts"
],
"bin": "./bin/cli.mjs",
"exports": {
".": {
"import": "./build/module/index.js",
"require": "./build/commonjs/index.js"
},
"./*": {
"import": "./build/module/*.js",
"require": "./build/commonjs/*.js"
}
},
"scripts": {
"build": "./scripts/build.sh",
"clean": "./scripts/clean.sh",
"compile": "tsc --noEmit",
"postinstall": "tsx scripts/postinstall.ts",
"codegen": "./scripts/codegen-its.sh && pnpm build && pnpm docgen",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src",
"test": "vitest run src",
"docgen": "typedoc",
"deploy:docs": "gh-pages -d docs -e evm"
},
"keywords": [],
"author": "",
"license": "LicenseRef-LICENSE",
"dependencies": {
"@axelarjs/utils": "workspace:*",
"package-json": "^8.1.1",
"tsx": "^4.7.1",
"viem": "^2.21.1",
"zx": "^7.2.3"
},
"devDependencies": {
"@axelar-network/interchain-token-service": "^2.0.1",
"@axelarjs/api": "workspace:^",
"@axelarjs/config": "workspace:*",
"@types/node": "^20.11.30",
"@types/prettier": "^2.7.3",
"commander": "^11.1.0",
"dotenv": "^16.4.5",
"gh-pages": "^6.1.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"strip-ansi": "^6.0.1",
"typedoc": "^0.25.12",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
}
}