-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 831 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "presentation-prompter",
"version": "0.1.0",
"description": "A lightweight multilingual desktop teleprompter for slide presentations, screen sharing, and presenter notes.",
"main": "main.js",
"scripts": {
"start": "electron .",
"screenshots": "electron scripts/capture-screenshots.js",
"pack:win": "powershell -ExecutionPolicy Bypass -File scripts/package-portable-win.ps1",
"pack:mac": "electron-packager . Presentation-Prompter --platform=darwin --arch=universal --overwrite --out=dist --app-version=0.1.0 --ignore=^/dist --ignore=^/.git"
},
"keywords": [
"teleprompter",
"presentation",
"slides",
"ppt",
"speaker-notes",
"electron"
],
"author": "",
"license": "MIT",
"devDependencies": {
"electron": "^31.7.7",
"electron-packager": "^17.1.2"
}
}