-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 959 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 959 Bytes
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
{
"name": "@dynamored/dsftp-action",
"version": "1.0.1-beta",
"description": "dSFTP Github Actions to easily deploy your files onto your server via SFTP protocol | https://dynamored.com's service",
"main": "main.core.ts",
"engines": {
"node": ">16.10"
},
"repository": {
"type": "git",
"url": "git@github.com:DynamoRed/dsftp-action.git"
},
"author": {
"name": "DynamoRed",
"email": "team@dynamored.com",
"url": "https://dynamored.com"
},
"keywords": [
"action",
"actions",
"github",
"dynamored",
"sftp",
"dsftp"
],
"scripts": {
"build": "ncc build ./src/main.core.ts --license licenses.txt"
},
"license": "GPL-3.0",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.1",
"ssh2-sftp-client": "^7.0.3",
"tslib": "^2.4.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^18.11.0",
"@types/ssh2-sftp-client": "^9.0.0",
"@types/uuid": "^9.0.1",
"typescript": "^5.0.3"
}
}