-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "axelar-configs",
"version": "1.0.0",
"description": "A public registry for chains and asset configurations for applications built on the Axelar network",
"type": "module",
"scripts": {
"format": "prettier --write .",
"wizard": "bun run ./cli/wizard",
"codegen:schemas": "bun run scripts/codegen-schemas.ts",
"codegen:chains": "bun run scripts/codegen-chains.ts",
"codegen": "bun run codegen:schemas && bun run codegen:chains",
"test": "vitest --run",
"prepare": "husky install"
},
"keywords": [
"axelar",
"ethereum",
"blockchain",
"interoperability"
],
"license": "LicenseRef-LICENSE",
"dependencies": {
"@inquirer/prompts": "^4.3.0"
},
"devDependencies": {
"@axelarjs/utils": "^0.1.12",
"@types/prettier": "^2.7.3",
"bun-types": "^1.0.30",
"chalk": "^5.3.0",
"husky": "^8.0.3",
"jsonschema": "^1.4.1",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"svgo": "^3.0.2",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vitest": "^1.3.1",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.4",
"zx": "^7.2.3"
}
}