-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.43 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
49
50
51
52
{
"author": {
"email": "km.8k6ce+github@gmail.com",
"name": "kei-g"
},
"bin": {
"dockerhub-patch": "dist/index.js"
},
"bug": {
"url": "https://github.com/kei-g/dockerhub-patch/issues"
},
"dependencies": {
"@actions/core": "^3.0.1"
},
"description": "DockerHub Patch Action",
"devDependencies": {
"@biomejs/biome": "^2.5.8",
"@types/node": "^26.2.0",
"c8": "^12.0.0",
"esbuild": "^0.28.2",
"esbuild-register": "^3.6.0",
"npm-run-all2": "^9.0.3",
"rimraf": "^6.1.3",
"typescript": "^7.0.2"
},
"homepage": "https://github.com/kei-g/dockerhub-patch",
"license": "BSD-3-Clause",
"main": "dist/index.js",
"name": "@kei-g/dockerhub-patch",
"overrides": {
"brace-expansions": "^5.0.9"
},
"private": true,
"publishConfig": {
"access": "restricted",
"registry": "http://localhost"
},
"repository": "github:kei-g/dockerhub-patch",
"scripts": {
"build": "esbuild src/bin/patch.ts --bundle --charset=utf8 --format=cjs --minify --outfile=dist/index.cjs --platform=node --target=node24",
"clean": "rimraf coverage/ dist/index.cjs",
"cover": "c8 node --test",
"lint": "biome lint --write",
"prebuild": "npm run lint",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"start": "node --require esbuild-register src/bin/patch.ts",
"test": "npm-run-all2 --parallel cover lint"
},
"type": "module",
"version": "1.0.0"
}