-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.23 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
70
71
72
73
74
{
"name": "relay-protocol-oracle",
"author": "Relay Protocol",
"license": "MIT",
"scripts": {
"build": "tsc -b",
"start": "node ./dist/index.js",
"test": "jest",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint --max-warnings 0 --fix .",
"semgrep": "semgrep scan --config auto --config .semgrep/",
"prepare": "husky"
},
"resolutions": {
"strip-ansi": "5.x"
},
"lint-staged": {
"*.{js,ts,json}": [
"eslint --max-warnings 0 --no-warn-ignored --fix"
]
},
"dependencies": {
"@aws-sdk/client-kms": "3.958.0",
"@coral-xyz/anchor": "0.31.1",
"@fastify/swagger": "9.5.1",
"@fastify/swagger-ui": "5.2.3",
"@fastify/type-provider-typebox": "5.2.0",
"@nktkas/hyperliquid": "0.25.1",
"@relay-protocol/settlement-abis": "2.0.3",
"@relay-protocol/settlement-networks": "3.0.1",
"@relay-protocol/settlement-sdk": "0.0.133",
"@reservoir0x/lighter-ts-sdk": "1.0.7-alpha11",
"@sinclair/typebox": "0.34.38",
"@solana/spl-memo": "0.2.5",
"@solana/spl-token": "0.4.14",
"@solana/web3.js": "1.98.4",
"@ton/core": "0.61.0",
"@ton/crypto": "3.3.0",
"@ton/ton": "15.1.0",
"asn1.js": "5.4.1",
"axios": "1.11.0",
"bip322-js": "3.0.0",
"bitcoinjs-lib": "6.1.7",
"bitcoinjs-message": "2.2.0",
"bn.js": "5.2.2",
"bs58": "6.0.0",
"fastify": "5.4.0",
"json-stable-stringify": "1.3.0",
"ripple-keypairs": "2.0.0",
"tronweb": "6.0.4",
"viem": "2.33.3",
"winston": "3.17.0"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/bn.js": "5.2.0",
"@types/node": "22.17.0",
"@typescript-eslint/eslint-plugin": "8.50.0",
"@typescript-eslint/parser": "8.50.0",
"dotenv": "16.6.1",
"ecpair": "3.0.1",
"eslint": "9.39.2",
"eslint-plugin-jsonc": "2.21.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "16.2.7",
"tiny-secp256k1": "2.2.4",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"typescript": "5.9.2"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"repository": "https://github.com/relayprotocol/relay-protocol-oracle"
}