-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 907 Bytes
/
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
{
"name": "eas-lib",
"version": "0.1.5",
"description": "EAS attestations via Ethereum Account Abstraction",
"homepage": "https://github.com/Enaleia/eas-lib",
"main": "index.js",
"files": [
"src/eas.js",
"src/**/*.d.ts",
"index.js",
"index.d.ts",
"types"
],
"scripts": {
"lint": "eslint",
"build": "tsc",
"test": "mocha --recursive 'src/**/__tests__/*.js'",
"publish": "npm publish"
},
"author": "Enaleia",
"license": "MIT",
"dependencies": {
"@ethereum-attestation-service/eas-sdk": "^2.7.0",
"axios": "^1.7.7",
"bip39": "^3.1.0",
"ethers": "^6.13.4"
},
"devDependencies": {
"chai": "^4.5.0",
"chai-subset": "^1.6.0",
"dotenv": "^16.4.5",
"eslint": "^9.12.0",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=20.18.0",
"yarn": "1.22.22"
}
}