@dittmann/yeet
Version:
Yeet CLI for managing static site deployments
35 lines (34 loc) • 643 B
JSON
{
"name": "@dittmann/yeet",
"version": "1.0.4",
"description": "Yeet CLI for managing static site deployments",
"main": "index.ts",
"type": "module",
"bin": {
"yeet": "./dist/index.js"
},
"files": [
"dist/index.js",
"README.md"
],
"scripts": {
"dev": "bun run index.ts ./test-site",
"build": "bun build index.ts --outdir dist --target node --minify",
"type-check": "tsc --noEmit"
},
"dependencies": {
"citty": "^0.1.5",
"chalk": "^5.0.0",
"cli-spinners": "^2.9.2"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5"
},
"keywords": [
"cli",
"deployment",
"static-sites",
"yeet"
]
}