-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 866 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 866 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
{
"name": "setup-deck",
"version": "1.0.0",
"description": "Sets up Deckrun CLI in your GitHub Actions workflow.",
"main": "index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/deckrun/setup-deck.git"
},
"keywords": [
"GitHub",
"Actions",
"Deckrun",
"CI/CD",
"deployment",
"cloud"
],
"author": "Daniel Vigueras",
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/tool-cache": "^4.0.0",
"@octokit/rest": "^22.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@vercel/ncc": "^0.38.3",
"eslint": "^10.5.0",
"globals": "^17.7.0"
},
"scripts": {
"lint": "eslint index.js",
"test": "npm install; npm run lint",
"package": "ncc build index.js -o dist"
}
}