Add compilation step

This commit is contained in:
Idrees Hassan
2025-08-13 17:00:07 -04:00
parent 7a40ca6e98
commit 289de9ab56
17 changed files with 2296 additions and 128 deletions

15
package.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "birb",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "Idrees Hassan",
"type": "module",
"scripts": {
"build": "node build.js",
"dev": "nodemon --watch birb.js --exec \"npm run build\""
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}