-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.13 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.13 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
{
"name": "@graphprotocol/toolshed",
"version": "1.1.1",
"publishConfig": {
"access": "public"
},
"description": "A collection of tools and utilities for the Graph Protocol Typescript components",
"author": "Tomás Migone <tomas@edgeandnode.com>",
"license": "MIT",
"main": "./dist/core/index.js",
"types": "./dist/core/index.d.ts",
"exports": {
".": {
"types": "./dist/core/index.d.ts",
"default": "./dist/core/index.js"
},
"./deployments": {
"types": "./dist/deployments/index.d.ts",
"default": "./dist/deployments/index.js"
},
"./fixtures": {
"types": "./dist/fixtures/index.d.ts",
"default": "./dist/fixtures/index.js"
},
"./hardhat": {
"types": "./src/hardhat/index.ts",
"default": "./src/hardhat/index.ts"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"default": "./dist/utils/index.js"
}
},
"scripts": {
"build": "pnpm build:dep && pnpm build:self",
"build:dep": "pnpm --filter '@graphprotocol/toolshed^...' run build:self",
"build:self": "tsc",
"watch": "tsc --watch",
"lint": "pnpm lint:ts; pnpm lint:md; pnpm lint:json",
"lint:ts": "eslint --fix --cache '**/*.{js,ts,cjs,mjs,jsx,tsx}'; prettier -w --cache --log-level warn '**/*.{js,ts,cjs,mjs,jsx,tsx}'",
"lint:md": "markdownlint --fix --ignore-path ../../.gitignore '**/*.md'; prettier -w --cache --log-level warn '**/*.md'",
"lint:json": "prettier -w --cache --log-level warn '**/*.json'",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"graph",
"graph-protocol",
"horizon"
],
"dependencies": {
"@graphprotocol/address-book": "workspace:^",
"@graphprotocol/interfaces": "workspace:^",
"@nomicfoundation/hardhat-ethers": "catalog:",
"debug": "^4.4.0",
"ethers": "catalog:",
"glob": "^11.1.0",
"hardhat": "catalog:",
"json5": "^2.2.3"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/json5": "^2.2.0",
"eslint": "catalog:",
"typescript": "catalog:"
}
}