-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.69 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
{
"name": "@etherscan-npm/cli",
"version": "0.0.0-development",
"description": "Official command-line interface for the Etherscan API V2. Query EVM blockchain data, inspect transactions, and verify smart contracts.",
"keywords": [
"etherscan",
"etherscan-cli",
"etherscan-api",
"ethereum",
"evm",
"web3",
"blockchain",
"block-explorer",
"cli",
"command-line",
"smart-contract",
"contract-verification",
"source-code-verification",
"transactions",
"tokens",
"erc20",
"nft",
"wallet",
"gas",
"abi",
"multichain"
],
"license": "MIT",
"homepage": "https://github.com/etherscan/etherscan-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/etherscan/etherscan-cli.git"
},
"bugs": {
"url": "https://github.com/etherscan/etherscan-cli/issues"
},
"type": "commonjs",
"bin": {
"etherscan": "npm/bin/etherscan.js"
},
"scripts": {
"prepublishOnly": "node npm/prepublish-check.js",
"test:package": "npm pack --dry-run",
"test:release": "node npm/publish.test.js",
"test:eol": "node npm/check-tarball-eol.js"
},
"files": [
"npm/bin/etherscan.js",
"npm/platform.js",
"README.md",
"LICENSE"
],
"optionalDependencies": {
"@etherscan-npm/cli-darwin-arm64": "0.0.0-development",
"@etherscan-npm/cli-darwin-x64": "0.0.0-development",
"@etherscan-npm/cli-linux-arm64": "0.0.0-development",
"@etherscan-npm/cli-linux-x64": "0.0.0-development",
"@etherscan-npm/cli-win32-arm64": "0.0.0-development",
"@etherscan-npm/cli-win32-x64": "0.0.0-development"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}