From b495183a64447575d7165dc3faf5803a2e3e0d7b Mon Sep 17 00:00:00 2001 From: Jarian Cottingham Date: Wed, 18 Feb 2026 20:55:24 -0600 Subject: [PATCH] Add package.json with electron main entry and start script --- package.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index eeefc5f..84736e2 100644 --- a/package.json +++ b/package.json @@ -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" } -} +} \ No newline at end of file