-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "setup-hcloud",
"description": "Github action to install the Hetzner Cloud CLI",
"version": "1.0.1",
"author": "",
"private": true,
"homepage": "https://github.com/hetznercloud/setup-hcloud",
"repository": {
"type": "git",
"url": "git+https://github.com/hetznercloud/setup-hcloud.git"
},
"bugs": {
"url": "https://github.com/hetznercloud/setup-hcloud/issues"
},
"keywords": [
"actions",
"cli",
"cloud",
"hcloud",
"hetzner",
"setup"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"bundle": "npm run format && npm run package",
"format": "prettier --no-error-on-unmatched-pattern --write **/*.{js,ts,mjs,json,yml,yaml,md}",
"lint": "npx eslint src",
"package": "ncc build src/index.ts --license licenses.txt",
"test": "jest"
},
"license": "MIT",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@actions/tool-cache": "2.0.2"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.19.0",
"@types/jest": "29.5.14",
"@types/node": "22.13.1",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"@vercel/ncc": "0.38.3",
"eslint": "9.19.0",
"eslint-plugin-github": "5.1.7",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-jsonc": "2.19.1",
"eslint-plugin-prettier": "5.2.3",
"globals": "15.14.0",
"jest": "29.7.0",
"prettier": "3.4.2",
"prettier-eslint": "16.3.0",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
}
}