-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "easy-sftp-deploy",
"version": "1.4.2",
"description": "Easily deploy files and directories to a server with sftp",
"repository": "https://github.com/caramelfur/easy-sftp-deploy",
"author": "Caramel <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/caramelfur/easy-sftp-deploy/issues"
},
"homepage": "https://github.com/caramelfur/easy-sftp-deploy",
"keywords": [
"upload",
"deploy",
"sftp",
"ftp",
"ssh",
"scp",
"server",
"backend",
"remote",
"cli"
],
"readme": "README.md",
"main": "dist/index.js",
"bin": {
"easy-sftp-deploy": "dist/cli-wrapper.js"
},
"private": false,
"type": "commonjs",
"scripts": {
"build": "tsc",
"start": "yarn build && node dist/index.js"
},
"dependencies": {
"colors": "^1.4.0",
"micromatch": "^4.0.7",
"ssh2-sftp-client": "^11.0.0",
"yargs": "^17.7.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/micromatch": "^4.0.9",
"@types/ssh2-sftp-client": "^9.0.3",
"@types/yargs": "^17.0.33",
"typescript": "^5.5.4"
}
}