feat(cli): add site cli to run scripts + handle media

This commit is contained in:
Cory Dransfeldt 2025-06-05 18:48:20 -07:00
parent 5055816f68
commit fc9ef6e5ed
No known key found for this signature in database
11 changed files with 1586 additions and 11 deletions

22
cli/package.json Normal file
View file

@ -0,0 +1,22 @@
{
"name": "coryd",
"version": "1.0.0",
"description": "The CLI for my site that helps manage assets and other changes.",
"type": "module",
"bin": {
"coryd": "./bin/index.js"
},
"scripts": {
"start": "node ./bin/index.js"
},
"author": "Cory Dransfeldt",
"dependencies": {
"chalk": "^5.4.1",
"commander": "^11.0.0",
"figlet": "^1.8.1",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"inquirer": "^9.2.7",
"transliteration": "^2.3.5"
}
}