-
Notifications
You must be signed in to change notification settings - Fork 244
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.54 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.54 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@hyperlane-xyz/registry",
"version": "24.2.0",
"description": "A collection of configs, artifacts, and schemas for Hyperlane",
"keywords": [
"Chains",
"Deployments",
"Hyperlane",
"Registry"
],
"homepage": "https://www.hyperlane.xyz",
"license": "MIT",
"repository": "https://github.com/hyperlane-xyz/hyperlane-registry",
"files": [
"/dist"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"chains/*": [
"./dist/chains/*/index.d.ts"
]
}
},
"exports": {
".": "./dist/index.js",
"./chains/schema.json": "./dist/chains/schema.json",
"./chains/*": "./dist/chains/*",
"./fs": "./dist/fs/index.js"
},
"scripts": {
"build": "tsx ./scripts/build.ts && tsc --project tsconfig.publish.json",
"clean": "rm -rf ./dist ./tmp",
"lint": "oxlint ./src/",
"lint:fix": "oxlint --fix ./src/",
"format": "oxfmt ./chains ./deployments ./src",
"prepare": "husky install",
"release": "pnpm run build && pnpm exec changeset publish",
"test:unit": "pnpm run build && mocha --require dotenv/config --config .mocharc.json './test/unit/*.test.ts' --exit",
"test:health": "pnpm run build && mocha --config .mocharc.json './test/health/*.test.ts' --exit --parallel",
"test:rpc-health-mainnet": "pnpm run build && mocha --config .mocharc.json './test/health/rpc-health.test.ts' --grep 'Mainnets' --exit --parallel",
"test:rpc-health-testnet": "pnpm run build && mocha --config .mocharc.json './test/health/rpc-health.test.ts' --grep 'Testnets' --exit --parallel",
"version:prepare": "pnpm exec changeset version && pnpm install --no-frozen-lockfile",
"version:check": "pnpm exec changeset status"
},
"dependencies": {
"jszip": "^3.10.1",
"yaml": "2.4.5",
"zod": "^3.21.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@faker-js/faker": "^9.6.0",
"@hyperlane-xyz/sdk": "29.1.0",
"@hyperlane-xyz/utils": "29.1.0",
"@types/chai-as-promised": "^8",
"@types/mocha": "^10.0.1",
"@types/node": "^24.10.9",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
"dotenv": "^16.4.7",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^10.2.0",
"oxfmt": "0.42.0",
"oxlint": "1.57.0",
"pino": "^8.20.0",
"randexp": "^0.5.3",
"sinon": "^18.0.0",
"svgo": "3.3.2",
"tsx": "^4.7.1",
"typescript": "6.0.2",
"zod-to-json-schema": "^3.22.5"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.25.0"
}