-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
69 lines (69 loc) · 2.34 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
63
64
65
66
67
68
69
{
"name": "@zetachain/localnet",
"private": false,
"version": "0.0.0-set-on-publish",
"description": "",
"scripts": {
"build": "del-cli dist && tsc && cpx 'packages/localnet/src/solana/**/*' dist/localnet/src/solana/ && cpx 'packages/localnet/src/sui/**/*' dist/localnet/src/sui/",
"lint:fix": "eslint --ext .js,.ts . --fix",
"lint": "eslint --ext .js,.ts ."
},
"files": [
"dist"
],
"exports": {
"./tasks": "./dist/tasks/src/index.js",
"./localnet": {
"import": "./dist/localnet/src/index.js",
"require": "./dist/localnet/src/index.js",
"types": "./dist/localnet/src/index.d.ts"
},
"./solana/deploy/gateway.so": "./dist/localnet/src/solana/deploy/gateway.so",
"./solana/deploy/gateway-keypair.json": "./dist/localnet/src/solana/deploy/gateway-keypair.json",
"./sui/gateway.mv": "./dist/localnet/src/sui/gateway.mv",
"./sui/gateway.json": "./dist/localnet/src/sui/gateway.json"
},
"keywords": [],
"author": "ZetaChain",
"license": "MIT",
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72",
"devDependencies": {
"@types/elliptic": "^6.4.18",
"@types/wait-on": "^5.3.4",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"cpx": "^1.5.0",
"del-cli": "^5.1.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@inquirer/prompts": "^5.5.0",
"@mysten/sui": "^0.0.0-experimental-20250131013137",
"@solana/web3.js": "^1.95.4",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@zetachain/protocol-contracts": "11.0.0-rc5",
"ansis": "^3.3.2",
"bip39": "^3.1.0",
"bs58": "^6.0.0",
"concurrently": "^8.2.2",
"ed25519-hd-key": "^1.3.0",
"elliptic": "6.5.7",
"ethers": "^6.13.2",
"hardhat": "^2.22.8",
"wait-on": "^7.2.0"
}
}