-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 929 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
{
"name": "@kyve/stacks",
"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 ."
},
"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",
"axios": "^0.27.2"
},
"devDependencies": {
"@stacks/stacks-blockchain-api-types": "^4.1.0",
"pkg": "^5.8.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
}
}