-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 892 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
{
"name": "alchemy-account-abstraction",
"version": "1.0.0",
"description": "A basic test of Account Abstraction with Alchemy.",
"main": "index.ts",
"type": "module",
"license": "UNLICENSED",
"private": false,
"engines": {
"node": ">= 18.16.0"
},
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/ugoarzur/alchemy-account-abstraction.git"
},
"bugs": "",
"keywords": [
"account-abstraction",
"evm",
"alchemy"
],
"author": "Ugo Arzur <[email protected]>",
"contributors": [],
"scripts": {
"start": "npx tsx index.ts"
},
"devDependencies": {
"typescript": "^5.3.3"
},
"dependencies": {
"@alchemy/aa-accounts": "^3.1.1",
"@alchemy/aa-alchemy": "^3.1.1",
"@alchemy/aa-core": "^3.1.1",
"@alchemy/aa-signers": "^3.1.1",
"dotenv": "^16.4.5",
"viem": "^2.7.14"
}
}