init
Some checks failed
Build Website / Build NPM Project (push) Failing after 44s
Build Website / Tag Version (push) Has been skipped
Build Website / Build & Push Dockerfile (push) Has been skipped

This commit is contained in:
2025-09-27 00:40:24 -04:00
commit f08a4a0808
20 changed files with 1820 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "kiwixm",
"version": "1.0.0",
"description": "Kiwix Library Manager",
"main": "src/main.mjs",
"type": "module",
"scripts": {
"start": "node src/main.mjs",
"start:prod": "mv assets/* $ZIM_DIR/ && npm run start",
"archive-zim": "zimwriterfs --welcome=index.html --illustration=logo.png --language=eng --name=Archive --title=Archive --description=\"Your personal space for saving and browsing uploaded files\" --creator=ZaksCode --publisher=ZaksCode ./archive assets/archive.zim"
},
"keywords": [],
"author": "Zak Timson",
"license": "MIT",
"dependencies": {
"dotenv": "^17.2.2",
"express": "^5.1.0",
"multer": "^2.0.2"
}
}