forked from kyve-org/evm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 813 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 813 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
33
34
35
36
{
"name": "@kyve/evm",
"version": "1.0.5",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc",
"build:binaries": "yarn build && rimraf out && pkg package.json",
"start": "node ./dist/src/index.js",
"format": "prettier --write ."
},
"bin": "./dist/src/index.js",
"pkg": {
"scripts": "./dist/src/index.js",
"assets": "./node_modules/@kyve/sdk/dist/proto/*",
"targets": [
"latest-linux-x64",
"latest-macos-x64",
"latest-win-x64"
],
"outputPath": "out"
},
"prettier": {
"singleQuote": true
},
"dependencies": {
"@kyve/core": "^1.0.8",
"ethers": "^5.6.5"
},
"devDependencies": {
"pkg": "^5.6.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"typescript": "^4.6.4",
"webhook-discord": "^3.7.8"
}
}