create-avo-tools
Version:
A CLI for creating projects with your chosen tech stack and language
27 lines • 656 B
JSON
{
"name": "create-avo-tools",
"version": "1.0.0",
"description": "A CLI for creating projects with your chosen tech stack and language",
"main": "index.js",
"bin": {
"avo-tools": "./bin/cli.js"
},
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./bin/cli.js"
},
"keywords": ["cli", "project-generator", "tech-stack"],
"author": "Reuben Terblanche",
"license": "ISC",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"commander": "^13.0.0",
"fs-extra": "^11.2.0",
"inquirer": "^8.2.6",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}