added exe

This commit is contained in:
2025-06-10 21:40:23 +02:00
parent 05ecb42de6
commit 64f28e0dc7
6 changed files with 138 additions and 136 deletions

View File

@@ -1,25 +1,21 @@
{
"name": "cookbook",
"version": "0.4",
"main": "server.js",
"version": "1.0.0",
"description": "With this express app you can create and manage recipies.",
"bin": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
"start": "node server.js",
"build": "pkg . --targets node18-win-x64 --output Cookbook-v1_0.exe"
},
"keywords": [],
"author": "Theis Gaedigk",
"license": "ISC",
"description": "",
"dependencies": {
"ejs": "^3.1.10",
"express": "^5.1.0",
"marked": "^15.0.12"
"ejs": "^3.1.9",
"express": "^4.18.2",
"marked": "^12.0.2"
},
"pkg": {
"assets": [
"public/**/*",
"views/**/*"
"views/**/*",
"routes/**/*"
]
}
}