forked from QustomQure/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) 路 1.47 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) 路 1.47 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@kyve/core",
"description": "馃殌 The base KYVE node implementation.",
"version": "1.2.0",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"homepage": "https://github.com/KYVENetwork/core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/KYVENetwork/core"
},
"keywords": [
"KYVE",
"Arweave",
"Blockchain",
"PoS"
],
"author": "John Letey <john@kyve.network>, Troy Kessler <troy@kyve.network>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf dist && yarn format && tsc",
"format": "prettier --write .",
"deploy": "yarn build && yarn npm publish"
},
"dependencies": {
"@cosmjs/proto-signing": "^0.27.1",
"@cosmjs/stargate": "^0.27.1",
"@kyve/sdk": "1.2.0",
"@types/cli-progress": "^3.9.2",
"@types/jsonfile": "^6.0.1",
"arweave": "^1.10.17",
"axios": "^0.24.0",
"base64url": "^3.0.1",
"bignumber.js": "^9.0.1",
"commander": "^8.3.0",
"fs-extra": "^10.0.1",
"jsonfile": "^6.1.0",
"object-hash": "^2.2.0",
"prando": "^6.0.1",
"prom-client": "^14.0.1",
"protobufjs": "^6.11.2",
"tslog": "^3.2.2",
"unique-names-generator": "^4.6.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.10.3",
"@types/object-hash": "^2.2.1",
"@types/semver": "^7.3.9",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
}
}