-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.17 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "docker-login",
"version": "1.0.0",
"description": "GitHub Action for logging in to Buddy Docker registry",
"main": "dist/index.js",
"scripts": {
"build": "pnpm lint && esbuild src/index.ts --bundle --platform=node --target=node24 --minify --outdir=./dist",
"format": "biome format --write .",
"lint": "biome check .",
"lint:types": "tsc --skipLibCheck --noEmit"
},
"keywords": [
"github-action",
"buddy",
"bdy",
"cli",
"docker",
"login",
"ci-cd"
],
"author": "Marcel Gańczarczyk <marcel.ganczarczyk@buddy.works>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/buddy/docker-login.git"
},
"bugs": {
"url": "https://github.com/buddy/docker-login/issues"
},
"homepage": "https://github.com/buddy/docker-login#readme",
"packageManager": "pnpm@10.11.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@biomejs/biome"
]
},
"dependencies": {
"@actions/core": "3.0.0",
"@actions/exec": "3.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@types/node": "^25.3.2",
"esbuild": "0.27.3",
"typescript": "5.9.3"
}
}