-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.21 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
{
"name": "bscscangetcode",
"displayName": "getsourcecode",
"description": "get source code from bsc",
"publisher":"MapleCC",
"version": "1.0.0",
"engines": {
"vscode": "^1.66.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:bscscangetcode.getsourcecode"
],
"main": "./extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Get Contract Code",
"properties": {
"bscscangetcode.apikey": {
"type": "string",
"default": "",
"description": "API KEY (https://docs.bscscan.com/getting-started/viewing-api-usage-statistics)"
}
}
},
"commands": [{
"command": "bscscangetcode.getsourcecode",
"title": "Get Contact Source Code"
}]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.66.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"eslint": "^8.11.0",
"glob": "^7.2.0",
"mocha": "^9.2.2",
"typescript": "^4.5.5",
"@vscode/test-electron": "^2.1.3"
},
"dependencies": {
"fs": "0.0.1-security",
"node-fetch": "^3.2.3",
"path": "^0.12.7",
"request": "^2.88.2",
"web3": "^1.7.1"
}
}