feat: initial commit — OST to PST/MBOX converter with Docker support
Some checks failed
Build & Push Multi-Arch Image / build-and-push (push) Has been cancelled

This commit is contained in:
Simon Cloutier
2026-05-20 13:38:46 -04:00
commit cfee611fdc
17 changed files with 3311 additions and 0 deletions

16
package.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "ost2pst-converter",
"version": "1.0.0",
"description": "Outlook OST to PST converter local web utility",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "node server.js"
},
"dependencies": {
"express": "^4.19.2",
"multer": "^1.4.5-lts.1"
},
"author": "Antigravity",
"license": "MIT"
}