@elytro/cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4095 -0
- package/package.json +59 -0
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@elytro/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Elytro ERC-4337 Smart Account Wallet CLI",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"elytro": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"dev": "node --env-file=.env.development --import tsx/esm src/index.ts",
|
|
16
|
+
"build": "tsup",
|
|
17
|
+
"prepublishOnly": "bun run build",
|
|
18
|
+
"test": "node --env-file=.env.test --import tsx/esm test/smoke.ts",
|
|
19
|
+
"lint": "eslint ."
|
|
20
|
+
},
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"elytro",
|
|
26
|
+
"erc-4337",
|
|
27
|
+
"smart-account",
|
|
28
|
+
"wallet",
|
|
29
|
+
"cli",
|
|
30
|
+
"useroperation",
|
|
31
|
+
"account-abstraction"
|
|
32
|
+
],
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "https://github.com/aspect-build/Elytro",
|
|
37
|
+
"directory": "apps/cli"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@apollo/client": "^3.11.8",
|
|
41
|
+
"@elytro/abi": "latest",
|
|
42
|
+
"@elytro/sdk": "latest",
|
|
43
|
+
"@inquirer/prompts": "^7.0.0",
|
|
44
|
+
"chalk": "^5.3.0",
|
|
45
|
+
"commander": "^13.0.0",
|
|
46
|
+
"graphql": "^16.9.0",
|
|
47
|
+
"ora": "^8.0.0",
|
|
48
|
+
"viem": "^2.31.7"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/node": "^22.5.4",
|
|
52
|
+
"tsup": "^8.0.0",
|
|
53
|
+
"tsx": "^4.0.0",
|
|
54
|
+
"typescript": "^5.5.3"
|
|
55
|
+
},
|
|
56
|
+
"engines": {
|
|
57
|
+
"node": ">=24.0.0"
|
|
58
|
+
}
|
|
59
|
+
}
|