-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
31 lines (31 loc) · 1 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
{
"name": "@hyperlane-xyz/docs",
"description": "Private docs package",
"version": "0.0.0",
"devDependencies": {
"@hyperlane-xyz/core": "^1.4.2",
"@hyperlane-xyz/sdk": "^1.4.2",
"@hyperlane-xyz/hyperlane-token": "^1.4.2",
"@hyperlane-xyz/helloworld": "^1.4.2",
"@types/node": "^18.11.18",
"glob": "^8.1.0",
"markdown-table": "^3.0.3",
"remark-cli": "^11.0.0",
"remark-lint-no-dead-urls": "^1.1.0",
"remark-mdx": "^2.3.0",
"remark-validate-links": "^12.1.0"
},
"packageManager": "[email protected]",
"private": true,
"type": "module",
"scripts": {
"sync": "node sync-addresses.js | grep -v 'duplicate definition' > ./resources/addresses.md && node sync-partials.js && node sync-config.js > resources/security.md",
"lint": "remark . --quiet --frail"
},
"remarkConfig": {
"plugins": [
"remark-validate-links",
"remark-lint-no-dead-urls"
]
}
}