Dia antes primera install

This commit is contained in:
2025-12-08 15:20:28 -06:00
commit 1416478c9c
4130 changed files with 886376 additions and 0 deletions

36
node_modules/cliss/package.json generated vendored Normal file
View File

@@ -0,0 +1,36 @@
{
"name": "cliss",
"version": "0.0.2",
"description": "CLI Simple, Stupid. Automatic discovery of parameters names. Provides an easy and minimal setup by passing in only a function reference without the need of declaring all expected options names or create a help section by hand. Support to sync / async. Support to subcommands down to N levels.",
"main": "./lib/cliss.js",
"scripts": {
"test": "mocha ./test/main.test.js ./test/main.test.pipe.stdin.js"
},
"author": "",
"license": "ISC",
"keywords": [
"cli",
"command-line interface",
"command line",
"async",
"minimal",
"simple"
],
"repository": {
"type": "git",
"url": "https://github.com/DiegoZoracKy/cliss"
},
"dependencies": {
"command-line-usage": "^4.0.1",
"deepmerge": "^2.0.0",
"get-stdin": "^5.0.1",
"inspect-parameters-declaration": "0.0.9",
"object-to-arguments": "0.0.8",
"pipe-functions": "^1.3.0",
"strip-ansi": "^4.0.0",
"yargs-parser": "^7.0.0"
},
"devDependencies": {
"mocha": "^4.0.1"
}
}