-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 943 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 943 Bytes
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
{
"name": "savecontract",
"version": "1.0.3",
"description": "A CLI tool to download verified smart contract source code from Etherscan and other block explorers using the Etherscan V2 API.",
"type": "module",
"main": "src/main.js",
"bin": {
"savecontract": "bin/savecontract.js"
},
"scripts": {
"start": "node bin/savecontract.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"keywords": [
"etherscan",
"smart-contract",
"blockchain",
"solidity",
"downloader",
"cli",
"base",
"arbitrum",
"polygon"
],
"author": "A. Aurelions",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aaurelions/savecontract.git"
},
"dependencies": {
"axios": "^1.11.0",
"chalk": "^5.4.1",
"dotenv": "^17.2.1",
"ora": "^8.2.0",
"yargs": "^18.0.0"
},
"publishConfig": {
"access": "public"
}
}