-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.04 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.04 KB
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
{
"name": "docker-credential-env-setup-action",
"version": "1.0.0",
"description": "GitHub Action to install docker-credential-env and configure registries",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts -o dist --minify",
"format": "prettier --write src/**/*.ts",
"all": "npm run format && npm run build",
"update-deps": "npx npm-check-updates -u && npm install"
},
"keywords": [
"github",
"actions",
"docker",
"credentials"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^2.0.2"
},
"devDependencies": {
"@actions/exec": "^2.0.0",
"@actions/http-client": "^3.0.0",
"@actions/io": "^2.0.0",
"@actions/tool-cache": "^2.0.2",
"@types/node": "^25.0.10",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.54.0",
"@vercel/ncc": "0.38.4",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
}
}