-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
41 lines (41 loc) · 982 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
{
"name": "@garygrossgarten/github-action-ssh",
"version": "0.8.0",
"description": "Run commands on a remote server via SSH.",
"repository": {
"type": "git",
"url": "https://github.com/garygrossgarten/github-action-ssh"
},
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"pack": "ncc build --source-map --license licenses.txt"
},
"bin": {
"github-action-ssh": "dist/index.js"
},
"preferGlobal": false,
"keywords": [
"typescript",
"github",
"github-actions",
"actions",
"ssh"
],
"author": "garygrossgarten",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"node-ssh": "^13.0.0"
},
"devDependencies": {
"@types/node": "^20.12.1",
"@types/ssh2": "^1.11.6",
"@types/ssh2-streams": "^0.1.9",
"@vercel/ncc": "^0.34.0",
"prettier": "^2.7.1",
"typescript": "4.8.4"
}
}