-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 915 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
{
"name": "setup-ssh-agent",
"version": "2.0.3",
"description": "A GitHub Action that starts the ssh-agent with the provided ssh keys and adds github.com to the known hosts.",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"start": "node -r dotenv/config .",
"start:dev": "ts-node --project tsconfig.json --files -r tsconfig-paths/register -r dotenv/config src/main/main.ts"
},
"keywords": [],
"author": "Yakuhzi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yakuhzi/setup-ssh-agent.git"
},
"dependencies": {
"@actions/core": "^1.10.1"
},
"devDependencies": {
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
}
}