-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
39 lines (39 loc) · 1018 Bytes
/
package.json
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
{
"name": "solidity-shell",
"version": "0.2.4",
"description": "An interactive Solidity shell with lightweight session recording and remote compiler support",
"main": "src/index.js",
"bin": {
"solidity-shell": "bin/main.js"
},
"scripts": {
"updateCompilerList": "node scripts/getCompilerList.js > src/compiler/autogenerated/solcVersions.js",
"updateBuiltIns": "node scripts/getBuiltIns.js > src/compiler/autogenerated/builtIns.js"
},
"author": {
"name": "tintinweb",
"url": "https://github.com/tintinweb/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tintinweb/solidity-shell.git"
},
"keywords": [
"solidity",
"repl",
"shell",
"interactive"
],
"license": "MIT",
"dependencies": {
"abi-to-sol": "^0.6.6",
"ganache": "^7.0.4",
"minimist": "^1.2.5",
"readline-sync": "^1.4.10",
"request": "^2.88.2",
"solc": "^0.8.17",
"sync-request": "^6.1.0",
"vorpal": "^1.12.0",
"web3": "^1.5.2"
}
}