-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.7 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.7 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": "@graphprotocol/interfaces",
"version": "0.6.6",
"publishConfig": {
"access": "public"
},
"description": "Contract interfaces for The Graph protocol",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"default": "./dist/types/index.js"
},
"./types-v5": {
"types": "./dist/types-v5/index.d.ts",
"default": "./dist/types-v5/index.js"
},
"./wagmi": {
"types": "./dist/wagmi/generated.d.ts",
"default": "./dist/wagmi/generated.js"
},
"./utils": {
"types": "./dist/src/utils.d.ts",
"default": "./dist/src/utils.js"
},
"./artifacts/*": "./artifacts/*",
"./contracts/*": "./contracts/*"
},
"files": [
"artifacts/**/*",
"dist/**/*",
"contracts/**/*",
"types/**/*",
"types-v5/**/*",
"wagmi/**/*",
"README.md"
],
"author": "Edge & Node",
"license": "GPL-2.0-or-later",
"scripts": {
"clean": "rm -rf dist dist-v5 cache artifacts types types-v5 wagmi",
"lint": "pnpm lint:ts; pnpm lint:sol; 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:sol": "solhint --fix --noPrompt --noPoster 'contracts/**/*.sol'; prettier -w --cache --log-level warn 'contracts/**/*.sol'",
"lint:md": "markdownlint --fix --ignore-path ../../.gitignore '**/*.md'; prettier -w --cache --log-level warn '**/*.md'",
"lint:json": "prettier -w --cache --log-level warn '**/*.json'",
"format": "prettier -w --cache --log-level warn '**/*.{js,ts,cjs,mjs,jsx,tsx,json,md,yaml,yml}'",
"build": "pnpm build:self",
"build:self": "scripts/build.sh",
"build:clean": "pnpm clean && pnpm build",
"watch": "tsc --watch",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@ethersproject/abi": "5.7.0",
"@ethersproject/providers": "5.7.2",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@openzeppelin/contracts": "3.4.2",
"@openzeppelin/contracts-upgradeable": "3.4.2",
"@typechain/ethers-v5": "^10.2.1",
"@wagmi/cli": "^2.3.1",
"ethers": "catalog:",
"ethers-v5": "npm:ethers@5.7.2",
"hardhat": "catalog:",
"hardhat-ignore-warnings": "catalog:",
"markdownlint-cli": "catalog:",
"prettier": "catalog:",
"prettier-plugin-solidity": "catalog:",
"solhint": "catalog:",
"ts-node": "catalog:",
"typechain": "^8.3.2",
"viem": "^2.31.7"
}
}