-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 954 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
{
"private": true,
"name": "@enf/eos-evm-miner",
"version": "0.5.2",
"description": "EOS EVM miner",
"type": "module",
"exports": "./dist/index.js",
"scripts": {
"start": "bun ./bin/cli.ts start --verbose",
"build": "bun build --compile ./bin/cli.ts --outfile eos-evm-miner",
"test": "bun test"
},
"contributors": [
"Yarkin",
"Matias Romeo",
"Nathan James",
"Denis Carriere <[email protected]>",
"Johnathan Leung <[email protected]>"
],
"license": "MIT",
"dependencies": {
"@ethereumjs/devp2p": "latest",
"@wharfkit/session": "^1.0.0",
"@wharfkit/wallet-plugin-privatekey": "^1.0.0",
"commander": "latest",
"dotenv": "latest",
"json-rpc-2.0": "latest",
"prom-client": "latest",
"tslog": "latest"
},
"devDependencies": {
"@tsconfig/recommended": "latest",
"@types/node": "latest",
"bun-types": "latest",
"typescript": "latest"
}
}