Initial commit: iOS OTA app store

This commit is contained in:
trey
2026-04-11 11:40:44 -05:00
commit ad2850d664
16 changed files with 1232 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "ios-appstore",
"version": "1.0.0",
"description": "Self-hosted iOS OTA app distribution server",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js"
},
"dependencies": {
"better-sqlite3": "^11.7.0",
"express": "^4.21.0",
"express-session": "^1.18.1",
"multer": "^1.4.5-lts.1",
"plist": "^3.1.0",
"unzipper": "^0.12.3",
"bcrypt": "^5.1.1",
"uuid": "^10.0.0",
"sharp": "^0.33.5"
}
}