-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1022 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
38
{
"name": "@kyve/solana",
"version": "0.3.6",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc",
"build:binaries": "yarn build && rimraf out && pkg --no-bytecode --public-packages '*' --output out/kyve package.json && node ./node_modules/@kyve/core/dist/src/scripts/checksum.js",
"start": "node ./dist/src/index.js",
"format": "prettier --write .",
"postinstall": "patch-package"
},
"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"
],
"outputPath": "out"
},
"prettier": {
"singleQuote": true
},
"dependencies": {
"@kyve/core": "^1.3.5",
"@solana/web3.js": "^1.50.1"
},
"devDependencies": {
"node-fetch": "^3.2.9",
"patch-package": "^6.4.7",
"pkg": "^5.8.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
}
}