-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "erc7412",
"version": "0.2.3",
"description": "Reference implementation for usage of EIP-7412",
"main": "dist/src/index.js",
"scripts": {
"build": "forge build && tsc",
"test": "npx jest --workerThreads",
"test:e2e": "node ./test/pyth.mjs",
"lint:fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Synthetixio/erc7412.git"
},
"files": [
"dist/**"
],
"keywords": [
"ethereum"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Synthetixio/erc7412/issues"
},
"homepage": "https://github.com/Synthetixio/erc7412#readme",
"dependencies": {
"@usecannon/cli": "^2.17.0",
"debug": "^4.3.7",
"node-fetch": "^2.6.12",
"typechain": "^8.3.1",
"viem": "^2.20.0"
},
"peerDependencies": {
"@pythnetwork/pyth-evm-js": "^1.25.0",
"@pythnetwork/pyth-sdk-solidity": "^2.2.1"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.0",
"eslint-plugin-promise": "^6.1.1",
"ethers": "^5.7.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}