-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.13 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
{
"name": "@kyvejs/tendermint-ssync",
"version": "1.3.8",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc",
"transpile": "rimraf dist-cjs && webpack --config webpack.config.js && cp ../../node_modules/@mysten/walrus-wasm/walrus_wasm_bg.wasm dist-cjs",
"build:binaries": "yarn build && yarn transpile && rimraf out && pkg --no-bytecode --public-packages '*' --compress GZip --output out/kyve package.json && node ./dist-cjs/checksum.js",
"start": "node ./dist/src/index.js",
"format": "prettier --write ."
},
"bin": "./dist-cjs/bundle.js",
"pkg": {
"scripts": "./dist-cjs/bundle.js",
"assets": "./dist-cjs/walrus_wasm_bg.wasm",
"targets": [
"latest-linux-x64",
"latest-linux-arm64",
"latest-macos-x64",
"latest-macos-arm64"
],
"outputPath": "out"
},
"prettier": {
"singleQuote": true
},
"dependencies": {
"@kyvejs/protocol": "1.5.0",
"axios": "^0.27.2"
},
"devDependencies": {
"@yao-pkg/pkg": "^6.10.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1"
}
}