-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
139 lines (139 loc) · 4.42 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
129
130
131
132
133
134
135
136
137
138
139
{
"name": "imaginary-teleprompter-electron",
"email": "[email protected]",
"homepage": "https://imaginary.tech/teleprompter/",
"description": "The most complete and professional free software teleprompter application.",
"license": "GPL-3.0+",
"version": "2.4.0",
"keywords": [
"teleprompter",
"television",
"news",
"multiplatform",
"portable",
"software",
"local",
"online",
"imaginary sense",
"imaginary films",
"imaginary"
],
"author": {
"name": "Imaginary Sense",
"email": "[email protected]",
"url": "https://imaginary.tech/"
},
"contributors": [
"Javier O. Cordero-Pérez <[email protected]> (https://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/Imaginary-Teleprompter-Electron"
},
"bugs": {
"url": "https://github.com/ImaginarySense/Imaginary-Teleprompter/issues"
},
"main": "main.js",
"dependencies": {
"7zip-bin": "^3.1.0"
},
"devDependencies": {
"electron": "1.8.8",
"electron-builder": "20.14.7"
},
"scripts": {
"setup": "npm install & cd app & npm install & cd ..",
"postinstall": "electron-builder install-app-deps",
"start": "electron ./app --enable-logging",
"dev": "NODE_ENV='development' npm run start",
"dist:linux": "electron-builder build --linux --ia32 --x64",
"dist:linux32": "electron-builder build --linux --ia32",
"dist:linux64": "electron-builder build --linux --x64",
"dist:linuxarm": "electron-builder build --linux --armv7l",
"dist:linuxarm64": "electron-builder build --linux --arm64",
"dist:macos": "electron-builder build --mac",
"dist:win": "electron-builder build --win --ia32 --x64",
"dist:win32": "electron-builder build --win --ia32",
"dist:win64": "electron-builder build --win --x64",
"pack": "electron-builder build --dir"
},
"engine": "node >= 8.2.1",
"preferGlobal": "false",
"copyright": "Copyright © year ${author}",
"build": {
"appId": "tech.imaginary.teleprompter",
"productName": "Imaginary Teleprompter",
"asar": "true",
"squirrelWindows": {
"msi": false,
"loadingGif": "build/install-spinner.png",
"remoteReleases": "https://github.com/ImaginarySense/Imaginary-Teleprompter-Electron"
},
"nsis": {
"oneClick": "false",
"perMachine": "true",
"allowElevation": "true",
"allowToChangeInstallationDirectory": true
},
"win": {
"icon": "build/icon.ico",
"target": "nsis"
},
"dmg": {
"title": "Imaginary Teleprompter - ${version}",
"iconSize": 64,
"iconTextSize": 11,
"contents": [
{
"x": 130,
"y": 108,
"type": "file"
},
{
"x": 130,
"y": 222,
"type": "link",
"path": "/Applications"
}
]
},
"mac": {
"target": "pkg",
"icon": "build/icon.icns",
"category": "public.app-category.video",
"type": "distribution"
},
"deb": {
"icon": "build/icon.icns"
},
"snap": {
"confinement": "strict",
"summary": "Professional grade, free software, teleprompter application.",
"grade": "stable",
"category": "AudioVideo"
},
"linux": {
"target": [
"AppImage",
"tar.gz",
"deb",
"rpm",
"freebsd",
"pacman",
"snap"
],
"icon": "build/icon.icns",
"executableName": "imaginary-teleprompter",
"synopsis": "The most complete and professional free software teleprompter application.",
"vendor": "Imaginary Sense <[email protected]> (https://imaginary.tech)",
"maintainer": "Javier O. Cordero Perez <[email protected]> (https://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"
}
}