forked from ethereum-attestation-service/eas-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.5 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
{
"name": "@ethereum-attestation-service/eas-sdk",
"version": "2.2.0",
"description": "Ethereum Attestation Service - TypeScript/JavaScript SDK",
"repository": "git@github.com:ethereum-attestation-service/eas-sdk.git",
"author": "Leonid Beder <leonid@lbeder.com>",
"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 -c .eslintrc --ext .ts src test",
"format": "prettier --check --write src/**/*.ts test/test/**/*.ts --config .prettierrc",
"prepare:release": "pnpm lint && pnpm test && pnpm build"
},
"dependencies": {
"@ethereum-attestation-service/eas-contracts": "1.4.1",
"ethers": "^6.11.1",
"js-base64": "^3.7.7",
"lodash": "^4.17.21",
"multiformats": "9.9.0",
"pako": "^2.1.0",
"semver": "^7.6.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@metamask/eth-sig-util": "^7.0.1",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.7",
"@types/pako": "^2.0.3",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"prettier": "^3.2.5",
"prettier-package-json": "^2.8.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
}
}