General structure works

This commit is contained in:
2025-06-22 21:10:15 -04:00
parent de638f3e98
commit b307630642
7 changed files with 105 additions and 5 deletions

View File

@@ -3,7 +3,10 @@
"version": "1.0.0",
"main": "breadbot.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsx watch src/breadbot.ts",
"start": "node dist/breadbot.js",
"build": "tsup src/breadbot.ts --minify"
},
"author": "",
"license": "ISC",
@@ -16,8 +19,5 @@
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "tsup src/index.ts --minify"
}
}