-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
67 lines (67 loc) · 1.64 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
{
"name": "subtitles-composer-app",
"version": "1.0.8",
"description": "An OS X app to generate subtitles captions files from plain text transcriptions and audio or video, media files.",
"main": "./src/main.js",
"scripts": {
"pack:mac": "build --dir --mac --x64",
"build:mac": "build --mac --x64",
"build:linux": "build --linux --x64",
"build:ml:publish:always": "electron-builder -ml --publish always",
"start": "electron ."
},
"repository": "https://github.com/pietrop/subtitlesComposer-app",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "Pietro Passarelli",
"license": "MIT",
"devDependencies": {
"electron": "^1.8.8",
"electron-builder": "^19.56.2"
},
"build": {
"publish": {
"provider": "github",
"releaseType": "prerelease",
"vPrefixedTagName": false
},
"appId": "org.subtitlesComposer.subtitlesComposer-electron",
"asar": false,
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"category": "Video",
"packageCategory": "GNOME;GTK;captions;subtitles",
"description": "subtitlescomposer Desktop Client for Linux",
"target": [
"AppImage"
]
},
"win": {
"target": "squirrel",
"icon": "build/icon.ico"
}
},
"dependencies": {
"electron-in-page-search": "^1.2.3",
"fix-path": "^2.1.0",
"subtitlescomposer": "git+https://github.com/pietrop/subtitlesComposer.git"
}
}