-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
178 lines (178 loc) · 5.56 KB
/
package.json
File metadata and controls
178 lines (178 loc) · 5.56 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{
"name": "@celo/celocli",
"description": "CLI Tool for interacting with the Celo protocol",
"version": "8.0.1",
"author": "Celo",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/celo-org/developer-tooling.git",
"directory": "packages/cli"
},
"homepage": "https://docs.celo.org/cli",
"bugs": "https://github.com/celo-org/developer-tooling/issues?utf8=%E2%9C%93&q=label%3Acli+",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"bin": {
"celocli": "./bin/run.js",
"dev": ".bin/dev.js"
},
"keywords": [
"celo",
"celocli",
"celo-cli"
],
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rm -f tsconfig.tsbuildinfo && rm -rf lib/ && yarn run --top-level tsc -b . --clean",
"dev": "yarn build && yarn run --top-level ts-node ./bin/dev.js",
"build": "yarn run --top-level tsc -b . && yarn oclif manifest",
"docs": "./generate_docs.sh",
"prepublish": "",
"prepack": "yarn run build && oclif readme",
"homebrew": "node ./homebrew/scripts/prepare.mjs",
"test": "TZ=UTC NODE_OPTIONS='--experimental-vm-modules' yarn jest --maxWorkers 50% --silent --forceExit",
"test-ci": "yarn test-ci-base || yarn test-ci-base --onlyFailures",
"test-ci-base": "TZ=UTC NODE_OPTIONS='--experimental-vm-modules' yarn jest --workerIdleMemoryLimit=0.1 --forceExit --ci",
"cs": "yarn --top-level run cs"
},
"dependencies": {
"@celo/abis": "13.0.0-post-audit.0",
"@celo/core": "0.0.1",
"@celo/actions": "0.2.0",
"@celo/base": "^7.0.3",
"@celo/compliance": "1.0.28",
"@celo/connect": "^7.0.0",
"@celo/contractkit": "^10.0.2",
"@celo/cryptographic-utils": "^6.0.0",
"@celo/explorer": "^5.0.18",
"@celo/governance": "^5.1.9",
"@celo/metadata-claims": "^1.0.4",
"@celo/utils": "^8.0.3",
"@celo/viem-account-ledger": "^1.2.2",
"@celo/wallet-hsm-azure": "^8.0.2",
"@celo/wallet-ledger": "^8.0.2",
"@celo/wallet-local": "^8.0.2",
"@ethereumjs/util": "8.0.5",
"@ledgerhq/hw-transport-node-hid": "^6.28.5",
"@oclif/core": "^3.27.0",
"@oclif/plugin-autocomplete": "^3.2.0",
"@oclif/plugin-commands": "^4.1.21",
"@oclif/plugin-help": "^6.2.8",
"@oclif/plugin-not-found": "^3.2.15",
"@oclif/plugin-plugins": "^5.4.34",
"@oclif/plugin-warn-if-update-available": "^3.1.11",
"@safe-global/protocol-kit": "^5.0.4",
"@safe-global/types-kit": "^1.0.0",
"@types/command-exists": "^1.2.3",
"bignumber.js": "9.0.0",
"chalk": "^2.4.2",
"command-exists": "^1.2.9",
"cross-fetch": "3.1.5",
"debug": "^4.1.1",
"fs-extra": "^8.1.0",
"humanize-duration": "^3.32.1",
"prompts": "^2.0.1",
"viem": "^2.33.2",
"web3": "1.10.4"
},
"devDependencies": {
"@celo/dev-utils": "workspace:^",
"@types/debug": "^4.1.4",
"@types/fs-extra": "^8.0.0",
"@types/humanize-duration": "^3.27.4",
"@types/inquirer": "^6.5.0",
"@types/ledgerhq__hw-transport-node-hid": "^4.22.5",
"@types/node": "^18.7.16",
"@types/prompts": "^1.1.1",
"inquirer": "^7.3.3",
"jest": "^29.7.0",
"oclif": "^4.17.32",
"semver": "^7.7.2",
"ts-jest": "^29.1.5"
},
"files": [
"README.md",
"CHANGELOG.md",
"/bin",
"/lib",
"!lib/**/*.map",
"!lib/test-utils",
"!lib/**/*.test.**",
"!lib/**/*.d.ts",
"/oclif.manifest.json"
],
"oclif": {
"bin": "celocli",
"commands": "./lib/commands",
"helpClass": "./lib/help",
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-commands",
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-plugins",
"@oclif/plugin-warn-if-update-available"
],
"topics": {
"account": {
"description": "Manage your account, keys, and metadata"
},
"config": {
"description": "Configure CLI options which persist across commands"
},
"dkg": {
"description": "Publish your locally computed Decentralized Key Generation results to the blockchain"
},
"election": {
"description": "Participate in and view the state of Validator Elections"
},
"exchange": {
"description": "Exchange Celo Dollars and CELO via Mento"
},
"governance": {
"description": "Interact with on-chain governance proposals and hotfixes"
},
"identity": {
"description": "Interact with ODIS and the attestations service"
},
"lockedcelo": {
"description": "View and manage locked CELO"
},
"network": {
"description": "View details about the network, like contracts and parameters"
},
"node": {
"description": "Manage your Celo node"
},
"releasecelo": {
"description": "View and manage ReleaseGold contracts"
},
"transfer": {
"description": "Transfer CELO and Celo Dollars"
},
"validator": {
"description": "View and manage Validators"
},
"validatorgroup": {
"description": "View and manage Validator Groups"
}
},
"warn-if-update-available": {
"timeoutInDays": 1,
"message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>."
},
"repositoryPrefix": "https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%40<%= config.version %>/packages/cli/<%- commandPath %>",
"hooks": {
"prerun": "./lib/hooks/prerun/plugin-warning"
}
}
}