-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 840 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 840 Bytes
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
{
"name": "cew",
"version": "1.0.0",
"description": "A simple CLI Ethereum Wallet using Viem",
"main": "dist/cli.js",
"bin": "dist/cli.js",
"scripts": {
"start": "ts-node src/cli.ts",
"build": "tsc",
"package": "npm run build && pkg . -t node18-macos-x64 --output cew"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/uuid": "^9.0.8",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.4.1",
"ethers": "^6.16.0",
"inquirer": "^8.2.6",
"ora": "^5.4.1",
"uuid": "^9.0.1",
"viem": "^2.7.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.16",
"pkg": "^5.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}