Restructure project

This commit is contained in:
2024-03-09 02:17:26 -05:00
parent fd8bba8199
commit af39ad7094
3 changed files with 3 additions and 96 deletions

22
cli/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "kuzco-cli",
"version": "1.0.0",
"description": "A simple cli for kyzco api",
"main": "kuzco-cli.js",
"bin": "kuzco-cli.js",
"scripts": {
"start": "node kuzco-cli.js"
},
"pkg": {
"targets": [
"node14-linux-x64",
"node14-win-x64",
"node14-macos-x64"
]
},
"dependencies": {
"got": "^14.2.1",
"node-fetch": "^2.6.7",
"prompt-sync": "^4.2.0"
}
}