-
Notifications
You must be signed in to change notification settings - Fork 146
/
Copy pathpackage.json
69 lines (69 loc) · 1.96 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
{
"name": "@graphprotocol/sdk",
"version": "0.5.0",
"description": "TypeScript based SDK to interact with The Graph protocol contracts",
"main": "build/index.js",
"types": "src/index.ts",
"exports": {
".": {
"default": "./src/index.ts",
"types": "./src/index.ts"
},
"./gre": {
"default": "./src/gre/index.ts",
"types": "./src/gre/index.ts"
}
},
"repository": "[email protected]:graphprotocol/sdk.git",
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@arbitrum/sdk": "~3.1.13",
"@ethersproject/experimental": "^5.7.0",
"@graphprotocol/common-ts": "^2.0.7",
"@graphprotocol/contracts": "workspace:^6.2.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"debug": "^4.3.4",
"ethers": "^5.7.0",
"hardhat": "~2.14.0",
"hardhat-secure-accounts": "^0.0.6",
"inquirer": "^8.0.0",
"lodash": "^4.17.21",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/chai-as-promised": "^7.1.7",
"@types/debug": "^4.1.10",
"@types/inquirer": "^8.0.0",
"@types/lodash": "^4.14.200",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"scripts": {
"lint": "eslint '**/*.{js,ts}' --fix",
"prettier": "prettier --write '**/*.{js,ts,json}'",
"test:gre": "cd src/gre && mocha --exit --recursive 'test/**/*.test.ts' && cd ..",
"clean": "rm -rf build",
"build": "npm run clean && tsc"
},
"files": [
"build/*",
"src/*",
"README.md",
"CHANGELOG.md",
"LICENSE"
]
}