-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 793 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 793 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
{
"name": "hetzner-cloud-api-action",
"version": "1.0.0",
"description": "A GitHub action to interact with the Hetzner Cloud API",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "node ./src/index.js",
"package": "ncc build src/index.js --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CycriLabs/hetzner-cloud-api-action.git"
},
"keywords": [],
"author": "Marc Scheib",
"license": "MIT",
"bugs": {
"url": "https://github.com/CycriLabs/hetzner-cloud-api-action/issues"
},
"homepage": "https://github.com/CycriLabs/hetzner-cloud-api-action#readme",
"dependencies": {
"@actions/core": "^1.11.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"prettier": "^3.6.2"
}
}