forked from nhedger/setup-exoscale
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 961 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 961 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": "setup-exoscale",
"description": "Setup Exoscale CLI in GitHub Actions",
"scripts": {
"build": "unbuild",
"prepackage": "npm run build",
"package": "ncc build build/index.mjs -o dist",
"format": "rome format --write .",
"lint": "rome check .",
"postinstall": "lefthook install"
},
"keywords": [
"exoscale",
"cli",
"github-action"
],
"author": {
"name": "Nicolas Hedger",
"email": "nicolas@hedger.ch"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/tool-cache": "^2.0.1",
"@octokit/auth-action": "^3.0.0",
"@octokit/request-error": "^4.0.1",
"@octokit/rest": "^19.0.11",
"rome": "^12.1.3",
"ts-dedent": "^2.2.0"
},
"devDependencies": {
"@hedger/prettier-config": "^1.2.0",
"@octokit/types": "^9.3.1",
"@types/node": "^16.18.31",
"@vercel/ncc": "^0.36.1",
"lefthook": "^1.4.1",
"unbuild": "^1.2.1"
}
}