forked from awesamarth/mega-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.1 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.1 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
{
"name": "megaeth-cli",
"version": "0.7.2",
"description": "A CLI tool for MegaETH (install globally with -g flag)",
"bin": {
"mega": "./bin/mega.js"
},
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"build": "tsc",
"buildandlink": "tsc && pnpm link --global",
"start": "node ./bin/mega.js",
"dev": "ts-node src/index.ts"
},
"keywords": [
"blockchain",
"ethereum",
"mega",
"layer2",
"megaeth",
"cli",
"foundry"
],
"files": [
"dist",
"bin"
],
"preferGlobal": true,
"author": "awesamarth",
"repository": {
"type": "git",
"url": "git+https://github.com/awesamarth/mega-cli.git"
},
"license": "MIT",
"dependencies": {
"chalk": "4.1.2",
"commander": "^13.1.0",
"execa": "^9.5.2",
"fs-extra": "^11.3.0",
"inquirer": "^12.4.2",
"path": "^0.12.7",
"viem": "^2.26.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.13.8",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}