-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 2.87 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "airswap",
"description": "Command Line Interface (CLI) for the AirSwap Network",
"version": "5.0.4",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/airswap/airswap-cli"
},
"bin": {
"airswap": "./bin/run"
},
"bugs": "https://github.com/airswap/airswap-cli/issues",
"scripts": {
"build": "shx rm -rf lib && tsc -b",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "yarn build && oclif manifest && oclif readme",
"version": "oclif-dev readme && git add README.md",
"lint": "biome check --fix"
},
"dependencies": {
"@airswap/libraries": "5.0.3",
"@oclif/command": "^1.8.22",
"@oclif/config": "^1.18.8",
"@oclif/plugin-help": "^5.2.6",
"available-versions": "^0.13.7",
"axios": "^1.3.4",
"bignumber.js": "^9.1.1",
"cli-ux": "^6.0.9",
"compare-versions": "^6.0.0-rc.1",
"console.table": "^0.10.0",
"ethers": "^5.7.2",
"fs-extra": "^11.1.0",
"jayson": "^4.0.0",
"keytar": "^7.9.0",
"mathjs": "^11.6.0",
"node-emoji": "^1.11.0",
"ora": "^6.1.2",
"prompt": "^1.3.0",
"table": "^6.8.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@oclif/dev-cli": "^1.26.10",
"@oclif/test": "^2.3.8",
"@types/chai": "^4.3.4",
"@types/express-serve-static-core": "^4.17.33",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.14.2",
"@types/node-emoji": "^1.8.2",
"@types/table": "^6.3.2",
"oclif": "^3.7.0",
"shx": "^0.3.4",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/airswap/airswap-cli",
"keywords": [
"airswap"
],
"main": "lib/index.js",
"oclif": {
"topics": {
"account": {
"description": "set, show, and unset the current ethereum account"
},
"balances": {
"description": "display balances for the current ethereum account"
},
"registry": {
"description": "add and remove supported tokens"
},
"ip": {
"description": "display local network addresses"
},
"metadata": {
"description": "manage local token metadata"
},
"chain": {
"description": "set the active ethereum chain"
},
"rfq": {
"description": "get and take orders from a single peer or all peers"
},
"stream": {
"description": "stream pricing from a peer and send orders to swap "
},
"token": {
"description": "approve and transfer tokens between accounts"
},
"wrapped": {
"description": "deposit and withdraw wrapped native tokens (e.g. WETH)"
}
},
"commands": "./lib/commands",
"bin": "airswap",
"hooks": {
"init": "./lib/lib/init-hook"
},
"plugins": [
"@oclif/plugin-help"
]
},
"types": "lib/index.d.ts",
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}