-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.7 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@elytro/cli",
"version": "0.8.10",
"description": "Elytro ERC-4337 Smart Account Wallet CLI",
"type": "module",
"bin": {
"elytro": "./dist/index.js"
},
"main": "./dist/index.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "ENV_FILE=.env.development node --import ./scripts/load-env.mjs --import tsx/esm src/index.ts",
"build": "tsup",
"prepublishOnly": "bun run build",
"test": "ENV_FILE=.env.test node --import ./scripts/load-env.mjs --import tsx/esm test/smoke.ts",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"elytro",
"erc-4337",
"smart-account",
"wallet",
"cli",
"useroperation",
"account-abstraction"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aspect-build/Elytro",
"directory": "apps/cli"
},
"dependencies": {
"@apollo/client": "^3.11.8",
"@elytro/abi": "latest",
"@elytro/sdk": "latest",
"@inquirer/prompts": "^7.0.0",
"@napi-rs/keyring": "^1.2.0",
"chalk": "^5.3.0",
"commander": "^13.0.0",
"graphql": "^16.9.0",
"ora": "^8.0.0",
"viem": "^2.31.7"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@types/node": "^22.5.4",
"esbuild": "^0.27.4",
"husky": "^9.1.0",
"lint-staged": "^15.5.0",
"prettier": "^3.5.0",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.5.3"
},
"lint-staged": {
"*.{ts,js,json,md}": "prettier --write"
},
"engines": {
"node": ">=18.0.0"
}
}