forked from ImaginarySense/Imaginary-Teleprompter-Electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·128 lines (128 loc) · 3.98 KB
/
package.json
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "imaginary-teleprompter-electron",
"email": "[email protected]",
"homepage": "http://imaginary.tech/teleprompter/",
"description": "The most complete and professional free software teleprompter application.",
"license": "GPL-3.0+",
"version": "2.3.0",
"keywords": [
"teleprompter",
"television",
"news",
"multiplatform",
"portable",
"software",
"local",
"online",
"imaginary sense",
"imaginary films",
"imaginary"
],
"author": {
"name": "Imaginary Sense",
"email": "[email protected]",
"url": "http://imaginary.tech/"
},
"contributors": [
"Javier O. Cordero-Pérez <[email protected]> (http://javiercordero.info)",
"Victor A. Ortiz-Alvarado <[email protected]> (https://twitter.com/Va2ron1)",
"Rafael J. Sierra-Soto <[email protected]> (https://www.facebook.com/rafael.jose.7737)",
"Keyvan Pérez Pérez <[email protected]> (https://github.com/keyvanp)"
],
"repository": {
"type": "git",
"url": "https://github.com/ImaginarySense/Teleprompter-Electron"
},
"bugs": {
"url": "https://github.com/ImaginarySense/Teleprompter-Core/issues"
},
"main": "main.js",
"dependencies": {
"7zip-bin": "^2.1.0"
},
"devDependencies": {
"electron": "^1.6.11",
"electron-builder": "^19.18.1",
"electron-builder-squirrel-windows": "^19.18.0",
"electron-squirrel-startup": "^1.0.0"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron ./app --enable-logging",
"dev": "NODE_ENV='development' npm run start",
"dist": "npm run dist:win && npm run dist:linux && npm run dist:osx",
"dist:winux": "npm run dist:win && npm run dist:linux",
"dist:linux": "build --platform linux",
"dist:osx": "build --platform darwin",
"dist:win": "npm run dist:win64 && npm run dist:win32",
"dist:win32": "build --platform win32 --arch ia32",
"dist:win64": "build --platform win32 --arch x64",
"pack": "build --dir"
},
"engine": "node >= 8.2.1",
"preferGlobal": "false",
"copyright": "Copyright © year ${author}",
"build": {
"appId": "tech.imaginary.teleprompter",
"productName": "Teleprompter by Imaginary Sense",
"asar": "true",
"squirrelWindows": {
"msi": false,
"loadingGif": "build/install-spinner.png",
"remoteReleases": "https://github.com/imaginaryfilms/Teleprompter-Electron"
},
"nsis": {
"oneClick": "true",
"perMachine": "true",
"allowElevation": "true"
},
"win": {
"icon": "build/icon.ico",
"target": "squirrel"
},
"dmg": {
"title": "Teleprompter by Imaginary Sense - ${version}",
"iconSize": 64,
"iconTextSize": 11,
"contents": [
{
"x": 130,
"y": 108,
"type": "file"
},
{
"x": 130,
"y": 222,
"type": "link",
"path": "/Applications"
}
]
},
"mac": {
"target": "dmg",
"icon": "build/icon.icns",
"category": "public.app-category.video",
"type": "distribution"
},
"deb": {
"icon": "build/icon.icns"
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm",
"pacman",
"freebsd"
],
"executableName": "imaginary-teleprompter",
"synopsis": "The most complete and professional free software teleprompter application.",
"vendor": "Imaginary Sense <[email protected]> (http://imaginary.tech)",
"maintainer": "Javier O. Cordero Perez <[email protected]> (http://javiercordero.info)",
"description": "Professional grade, free software teleprompter. Built with web technologies so anyone can customize it. Features include: mirroring, dual-screen support, rich text editing, image support, custom styles, tablet mode, webcam mode, auto-save and accelerated graphics.",
"category": "AudioVideo;Video;Sequencer",
"packageCategory": "Video"
},
"compression": "maximum"
}
}