From c7afd053563916f2409fdc7913738a4f864ce9a0 Mon Sep 17 00:00:00 2001 From: Nicholas Tay Date: Sun, 14 Aug 2022 01:54:58 +1000 Subject: Initial commit Note that Electron 11 must be used, as Electron 12 uses Chromium 88, where plugins were removed. --- package.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 package.json (limited to 'package.json') diff --git a/package.json b/package.json new file mode 100644 index 0000000..14d6717 --- /dev/null +++ b/package.json @@ -0,0 +1,15 @@ +{ + "name": "electron-flash", + "version": "0.1.0", + "description": "Flash Player in Electron", + "main": "main.js", + "scripts": { + "start": "electron .", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "Nicholas Tay ", + "license": "BSD-2-Clause", + "devDependencies": { + "electron": "^11.5.0" + } +} -- cgit