-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 943 Bytes
/
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
{
"name": "transmit-2-ssh-config",
"version": "2.1.0",
"description": "Synchronize Transmit 5 SFTP favorites with your SSH config file",
"license": "MIT",
"repository": "nlemoine/transmit-2-ssh-config",
"author": {
"name": "Nicolas Lemoine",
"email": "[email protected]",
"url": "https://github.com/nlemoine"
},
"bin": {
"t2sc": "cli.js"
},
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"keywords": [
"transmit",
"ssh",
"ssh-config"
],
"scripts": {
"lint:fix": "prettier --write cli.js"
},
"dependencies": {
"@sindresorhus/slugify": "^2.1.0",
"applescript": "^1.0.0",
"chalk": "^4.1.2",
"consola": "^2.15.3",
"deep-equal": "^2.0.5",
"meow": "^10.1.1",
"ora": "^6.0.1",
"run-applescript": "^6.0.0",
"ssh-config": "^4.0.6"
},
"devDependencies": {
"dumper.js": "^1.3.1",
"prettier": "^2.4.1"
}
}