Add package.json with electron main entry and start script

This commit is contained in:
Jarian Cottingham 2026-02-18 20:55:24 -06:00
parent b542f13f21
commit b495183a64

View File

@ -1,5 +1,14 @@
{
"name": "MovieMapper",
"version": "1.0.0",
"description": "A desktop application for organizing and managing movie and TV show collections",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"electron": "^40.4.1",
"fluent-ffmpeg": "^2.1.3"
}
}
}