-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.95 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.95 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@kyvejs/protocol",
"version": "1.5.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/KYVENetwork/kyvejs.git"
},
"author": "Troy Kessler <troy@kyve.network>, John Letey <john@kyve.network>, ruslan glaznyov <ruslan.glaznyov@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "node -p \"'export const PROTOCOL_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "rimraf dist && yarn format && tsc",
"test": "jest",
"format": "prettier --write .",
"doc": "typedoc"
},
"dependencies": {
"@ardrive/turbo-sdk": "^1.14.1",
"@bundlr-network/client": "^0.8.9",
"@dha-team/arbundles": "^1.0.4",
"@kyvejs/coins": "1.0.3",
"@kyvejs/sdk": "1.4.5",
"@kyvejs/types": "1.5.0",
"arweave": "^1.15.7",
"axios": "^0.27.2",
"bignumber.js": "^9.1.2",
"clone": "^2.1.2",
"commander": "^9.4.1",
"form-data": "^4.0.4",
"fs-extra": "^10.0.1",
"jsonfile": "^6.1.0",
"jszip": "^3.10.1",
"prom-client": "^14.1.0",
"semver": "^7.5.3",
"tslog": "^3.2.2",
"unique-names-generator": "^4.6.0",
"uuid": "^9.0.0",
"@shelby-protocol/sdk": "^0.0.4",
"@aptos-labs/ts-sdk": "^5.1.1",
"electron": "^38.3.0",
"got": "^14.6.1",
"@mysten/walrus": "^0.7.2",
"@mysten/sui": "^1.39.1"
},
"devDependencies": {
"@types/clone": "^2.1.1",
"@types/diff": "^5.0.7",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.7",
"@types/jsonfile": "^6.0.1",
"@types/node": "^24.7.1",
"@types/object-hash": "^2.2.1",
"@types/seedrandom": "^3.0.2",
"@types/semver": "^7.3.9",
"@types/uuid": "^9.0.2",
"jest": "^28.1.3",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.4.5",
"typedoc": "^0.22.17",
"typescript": "^5.9.3"
}
}