forked from ethereum-attestation-service/eas-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "1.3.7",
"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 -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.3.7",
"ethers": "^6.9.0",
"js-base64": "^3.7.5",
"lodash": "^4.17.21",
"multiformats": "9.9.0",
"pako": "^2.1.0",
"semver": "^7.5.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@metamask/eth-sig-util": "^7.0.1",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.2",
"@types/pako": "^2.0.3",
"@types/semver": "^7.5.6",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"prettier": "^3.1.0",
"prettier-package-json": "^2.8.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.3.2"
}
}