This repository has been archived by the owner on Oct 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.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
{
"name": "Remote-SSH",
"main": "./lib/remote-ssh",
"version": "0.13.2",
"description": "A simple Putty SSH helper.",
"keywords": [
"ssh",
"putty",
"remote",
"sftp",
"terminal"
],
"repository": "https://github.com/dsone/remote-ssh",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "latest",
"fs-plus": "^3.0.0",
"strip-json-comments": "^2.0.1"
},
"configSchema": {
"10_useSSH": {
"title": "Use default SSH Client",
"description": "Use default built-in SSH client (ie. on Mac, Linux, etc.).<br>The Password is always copied to clipboard with this option",
"type": "boolean",
"default": false
},
"20_copyPassword": {
"title": "Copy Password",
"description": "Always copy the password to my clipboard instead of using it as a parameter",
"type": "boolean",
"default": true
},
"30_scanConfig": {
"title": "Scan for ftpconfig files",
"description": "If this is enabled, you need to fill in the folder(s) to scan below.",
"type": "boolean",
"default": false
},
"40_globalProjectFolder": {
"title": "Scan these folders for .ftpconfig files",
"description": "This is the absolute path where all your projects lie in their separate folders. I.e: `/home/user/my-atom-projects` with subfolders `/project1`, `/project2`, etc. If you have multiple such \"global\" folders, you can enter multiple paths separated by comma.",
"type": "string",
"default": ""
},
"50_searchPrimary": {
"title": "Configure display format of search results",
"description": "Define your custom format for the first line of search results, use keywords `{projectName}` for `rs_name`, `{folderName}` for the folder's name, and/or `{hostName}` for the `host` in .ftpconfig. HTML supported.",
"type": "string",
"default": "{projectName}<small class=\"pull-right\">{folderName}</small>"
}
}
}