-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 962 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 962 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
{
"name": "ssh-setup-action",
"version": "4.0.0",
"description": "Setup SSH",
"homepage": "https://github.com/MrSquaare/ssh-setup-action#readme",
"bugs": {
"url": "https://github.com/MrSquaare/ssh-setup-action/issues"
},
"license": "MIT",
"author": "MrSquaare",
"repository": {
"type": "git",
"url": "git+https://github.com/MrSquaare/ssh-setup-action.git"
},
"type": "module",
"main": "src/index.ts",
"scripts": {
"build": "rolldown -c",
"check": "oxlint . && oxfmt --check .",
"check:fix": "oxlint . --fix && oxfmt --write ."
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"nanoid": "^5.1.6",
"valid-filename": "^4.0.0"
},
"devDependencies": {
"@types/node": "^24.12.0",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"rolldown": "1.0.0-rc.9",
"typescript": "^5.9.3"
},
"engines": {
"node": "24"
},
"packageManager": "pnpm@10.32.1"
}