-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.18 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
{
"name": "chainview-cast",
"version": "0.1.1",
"description": "Tool to share blockchain commands with ease",
"main": "cli/index.js",
"scripts": {
"start": "node api/index.js",
"dev": "nodemon api/index.js",
"postinstall": "chmod +x cli/index.js",
"cli": "node cli/index.js",
"build": "echo 'Static assets already built'",
"test": "echo 'No tests specified'",
"lint": "echo 'No linting specified'"
},
"dependencies": {
"axios": "^1.6.0",
"chainview-cast": "^0.1.1",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"nanoid": "^3.3.6",
"pg": "^8.11.3"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"bin": {
"chainview": "./cli/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kanvgupta/simple-cast.git"
},
"keywords": [
"blockchain",
"cast",
"foundry",
"cli",
"ethereum",
"commands",
"sharing"
],
"author": "Your Name",
"license": "MIT",
"bugs": {
"url": "https://github.com/kanvgupta/simple-cast/issues"
},
"homepage": "https://chainview.kanvgupta.com",
"engines": {
"node": ">=14.0.0"
}
}