This repository has been archived by the owner on May 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.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
{
"name": "clip-merge",
"main": "./lib/clip-merge",
"version": "0.1.4",
"description": "Merge the copied data with the current clipboard content.",
"keywords": [
"clipboard",
"copy",
"cut",
"merge"
],
"activationCommands": {
"atom-workspace": [
"clip-merge:copy",
"clip-merge:cut"
]
},
"repository": "https://github.com/ooJerryLeeoo/atom-clip-merge",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {},
"configSchema": {
"audio": {
"order": 1,
"title": "Audio",
"type": "object",
"properties": {
"playAudio": {
"order": 1,
"title": "Play audio",
"description": "Play clip-merge audio when copy/cut.",
"type": "boolean",
"default": true
},
"audioVolume": {
"order": 2,
"title": "Volume",
"description": "Volume of the clip-merge audio.",
"type": "number",
"minimum": 0.0,
"maximum": 1.0,
"default": 0.5
}
}
},
"notification": {
"order": 2,
"title": "Notification",
"type": "object",
"properties": {
"enableNotification": {
"order": 1,
"title": "Enable notification",
"description": "Enable notification when copy/cut.",
"type": "boolean",
"default": true
}
}
}
}
}