nopalm
Version:
One stop graphical solution to create and manage your local Node.Js projects end to end.
17 lines • 367 B
JSON
{
"name": "greet-cli-yargs",
"version": "1.0.0",
"description": "A simple CLI application to greet users",
"main": "src/index.js",
"bin": {
"greet": "./src/index.js"
},
"scripts": {
"start": "node src/index.js"
},
"author": "Your Name",
"license": "ISC",
"dependencies": {
"yargs": "^17.4.0"
}
}