-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1004 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1004 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
45
{
"name": "validium-cli",
"version": "1.0.1",
"description": "\"This CLI tool streamlines deployment and facilitates seamless interaction with the Validium Network\"",
"main": "bin/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Validium-Chain/validium-cli.git"
},
"homepage": "https://github.com/Validium-Chain/validium-cli#readme",
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts"
},
"bin": {
"validium-cli": "bin/index.js"
},
"files": [
"README.md",
"bin"
],
"dependencies": {
"commander": "^12.1.0",
"kleur": "^4.1.5",
"simple-update-notifier": "^2.0.0"
},
"devDependencies": {
"@types/node": "^22.10.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"keywords": [
"validium-cli",
"validium",
"cli",
"validium-network",
"blockchain",
"l2-network"
],
"author": "Prashant Shaw",
"license": "ISC",
"publishConfig": {
"access": "public"
}
}