Solid start at a resume generator. Should probably add an action to build the real thing so I can expose it

This commit is contained in:
2025-12-08 16:48:07 -06:00
commit 431e5d2999
12 changed files with 546 additions and 0 deletions

12
package.json Normal file
View File

@@ -0,0 +1,12 @@
{
"name": "resume-builder",
"version": "1.0.0",
"description": "Builds an HTML resume from JSON data",
"main": "build.js",
"scripts": {
"build": "node build.js"
},
"dependencies": {
"ejs": "^3.1.8"
}
}