forked from pyth-network/pyth-crosschain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.83 KB
/
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
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
{
"name": "@pythnetwork/contract-manager",
"version": "1.0.0",
"description": "Set of tools to manage pyth contracts",
"private": true,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"shell": "ts-node ./src/shell.ts",
"lint": "eslint src/ scripts/",
"format": "prettier --write \"src/**/*.ts\" \"scripts/**/*.ts\""
},
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/pyth-network/pyth-crosschain.git"
},
"dependencies": {
"@certusone/wormhole-sdk": "^0.9.8",
"@coral-xyz/anchor": "^0.29.0",
"@cosmjs/cosmwasm-stargate": "^0.32.3",
"@cosmjs/stargate": "^0.32.3",
"@injectivelabs/networks": "^1.14.6",
"@mysten/sui.js": "^0.49.1",
"@pythnetwork/client": "^2.21.1",
"@pythnetwork/contract-manager": "workspace:*",
"@pythnetwork/cosmwasm-deploy-tools": "workspace:*",
"@pythnetwork/entropy-sdk-solidity": "workspace:*",
"@pythnetwork/price-service-client": "workspace:*",
"@pythnetwork/pyth-fuel-js": "workspace:*",
"@pythnetwork/pyth-sdk-solidity": "workspace:^",
"@pythnetwork/pyth-starknet-js": "^0.2.0",
"@pythnetwork/pyth-sui-js": "workspace:*",
"@pythnetwork/solana-utils": "workspace:^",
"@pythnetwork/xc-admin-common": "workspace:*",
"@sqds/mesh": "^1.0.6",
"@types/yargs": "^17.0.32",
"aptos": "^1.5.0",
"axios": "^0.24.0",
"bs58": "^5.0.0",
"extract-files": "^13.0.0",
"fuels": "^0.89.2",
"ramda": "^0.30.1",
"starknet": "^6.9.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"web3": "^1.8.2",
"web3-eth-contract": "^1.8.2",
"yaml": "^2.1.1"
},
"devDependencies": {
"@types/web3": "^1.2.2",
"eslint": "^8.0.0",
"prettier": "^2.6.2",
"typedoc": "^0.25.7"
}
}