-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 901 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 901 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
42
43
44
{
"name": "clone-contract",
"version": "0.4.1",
"description": "A tool to clone smart contract source code from various blockchains",
"main": "index.js",
"type": "module",
"bin": {
"clone-contract": "./bin/clone.js"
},
"scripts": {
"build": "node scripts/extract-chains.js",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"clone",
"fetch",
"blockchain",
"smart-contract",
"source-code",
"ethereum",
"solidity"
],
"author": "wmzy",
"repository": {
"type": "git",
"url": "https://github.com/wmzy/clone-contract.git"
},
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"files": [
"bin/",
"chains.json",
"README.md"
],
"devDependencies": {
"viem": "^2.33.0"
},
"dependencies": {
"set-env-http-proxy-agent": "^0.1.2"
}
}