-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "ssh-setup-action",
"version": "3.0.0",
"description": "Setup SSH",
"repository": {
"type": "git",
"url": "git+https://github.com/MrSquaare/ssh-setup-action.git"
},
"author": "MrSquaare",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrSquaare/ssh-setup-action/issues"
},
"homepage": "https://github.com/MrSquaare/ssh-setup-action#readme",
"main": "src/index.ts",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "ncc build src/index.ts -o lib -m",
"lint": "eslint .",
"format": "eslint --fix .",
"test": "sh ./test/test.sh"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.4.3"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"nanoid": "^5.0.6",
"valid-filename": "^4.0.0"
},
"engines": {
"node": ">=20"
}
}