-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
50 lines (50 loc) · 1.55 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
{
"name": "@ethereum-attestation-service/eas-sdk",
"version": "2.7.0",
"description": "Ethereum Attestation Service - TypeScript/JavaScript SDK",
"repository": "[email protected]:ethereum-attestation-service/eas-sdk.git",
"author": "Leonid Beder <[email protected]>",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rm -rf dist && tsc --build tsconfig.json",
"test": "cd test && pnpm test",
"lint": "eslint src test",
"format": "prettier --check --write src --config .prettierrc",
"prepare:release": "pnpm lint && pnpm format && pnpm test && pnpm build"
},
"dependencies": {
"@ethereum-attestation-service/eas-contracts": "1.7.1",
"@openzeppelin/merkle-tree": "^1.0.7",
"ethers": "^6.13.2",
"js-base64": "^3.7.7",
"lodash": "^4.17.21",
"multiformats": "9.9.0",
"pako": "^2.1.0",
"semver": "^7.6.3",
"viem": "^2.19.2"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@metamask/eth-sig-util": "^7.0.3",
"@types/lodash": "^4.17.7",
"@types/node": "^22.1.0",
"@types/pako": "^2.0.3",
"@types/semver": "^7.5.8",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-chai-friendly": "^1.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"prettier": "^3.3.3",
"prettier-package-json": "^2.8.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
}
}