forked from atom-extensions/atom-music
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.48 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
{
"name": "atom-transcribe",
"main": "./lib/atom-transcribe",
"version": "0.5.1",
"description": "A simple tool that helps to play and control audio and video files for manual speech to text transcription.",
"keywords": [
"transcription",
"interview",
"audio",
"video",
"transcribe"
],
"activationCommands": {
"atom-workspace": "atom-transcribe:toggle"
},
"repository": "https://github.com/mbroedl/atom-transcribe",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "^2.2.0",
"fuzzy-matching": "^0.4.3",
"jquery": "^2.2.4"
},
"configSchema": {
"smallSkip": {
"type": "integer",
"default": 2,
"min": 0,
"title": "Skip: small.",
"description": "Duration of a small skip (backward or forward) in seconds. Milliseconds are possible to add."
},
"bigSkip": {
"type": "integer",
"default": 10,
"min": 0,
"title": "Skip: big.",
"description": "Duration of a big skip (backward or forward) in seconds. Milliseconds are possible to add."
},
"pauseSkip": {
"type": "integer",
"default": 2,
"title": "Skip: after pause.",
"description": "Seconds to go backwards after each pause."
},
"timeStampFormat": {
"type": "string",
"default": "_[%t]_",
"title": "Format of inserted time stamp.",
"description": "%t is replaced with the respective time in mm:ss.ms"
}
}
}