forked from hyperlane-xyz/hyperlane-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2 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": "@hyperlane-xyz/registry",
"description": "A collection of configs, artifacts, and schemas for Hyperlane",
"version": "1.1.1",
"dependencies": {
"yaml": "^2",
"zod": "^3.21.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@eslint/js": "^9.1.1",
"@hyperlane-xyz/sdk": "3.11.1",
"@types/mocha": "^10.0.1",
"@types/node": "^16.9.1",
"@typescript-eslint/parser": "^7.7.0",
"chai": "^4.3.6",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"tsx": "^4.7.1",
"typescript": "5.3.3",
"typescript-eslint": "^7.7.0",
"zod-to-json-schema": "^3.22.5"
},
"type": "module",
"exports": {
".": "./dist/index.js",
"./chains/schema.json": "./dist/chains/schema.json",
"./chains/*": "./dist/chains/*",
"./local": "./dist/index-local.js"
},
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"chains/*": [
"./dist/chains/*/index.d.ts"
]
}
},
"files": [
"/dist"
],
"sideEffects": false,
"engines": {
"node": ">=16"
},
"homepage": "https://www.hyperlane.xyz",
"repository": "https://github.com/hyperlane-xyz/hyperlane-registry",
"keywords": [
"Hyperlane",
"Registry",
"Chains",
"Deployments"
],
"license": "MIT",
"scripts": {
"clean": "rm -rf ./dist ./tmp",
"build": "tsx ./scripts/build.ts && tsc --project tsconfig.publish.json",
"lint": "eslint ./src/",
"prettier": "prettier --write ./chains ./deployments",
"test:unit": "yarn build && mocha --config .mocharc.json './test/unit/*.test.ts' --exit",
"test:health": "yarn build && mocha --config .mocharc.json './test/health/*.test.ts' --exit",
"prepare": "husky",
"release": "yarn build && yarn changeset publish",
"version:prepare": "yarn changeset version && yarn install --no-immutable",
"version:check": "yarn changeset status"
},
"packageManager": "[email protected]"
}