-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 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
{
"name": "@graphprotocol/address-book",
"version": "1.0.1",
"publishConfig": {
"access": "public"
},
"description": "Contract addresses for The Graph Protocol",
"author": "Edge & Node",
"license": "GPL-2.0-or-later",
"exports": {
"./horizon/addresses.json": "./src/horizon/addresses.json",
"./subgraph-service/addresses.json": "./src/subgraph-service/addresses.json"
},
"files": [
"src/**/*.json",
"README.md"
],
"scripts": {
"lint": "pnpm lint:md; pnpm lint:json",
"lint:md": "markdownlint --fix --ignore-path ../../.gitignore '**/*.md'; prettier -w --cache --log-level warn '**/*.md'",
"lint:json": "prettier -w --cache --log-level warn '**/*.json'",
"restore-symlinks": "node scripts/restore-symlinks.js",
"prepublishOnly": "node scripts/copy-addresses-for-publish.js",
"postpublish": "node scripts/restore-symlinks.js"
},
"devDependencies": {
"prettier": "catalog:"
},
"keywords": [
"ethereum",
"smart-contracts",
"graph",
"graph-protocol",
"horizon",
"subgraph-service",
"address-book"
]
}