-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) Β· 1.54 KB
/
package.json
File metadata and controls
44 lines (44 loc) Β· 1.54 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
{
"name": "@noelware/docker-manifest-action",
"description": "π»ββοΈπ³ A tiny, simple GitHub Action to link Docker manifests easily",
"version": "1.0.0",
"main": "build/main.js",
"type": "module",
"private": true,
"author": "Noel Towa <cutie@floofy.dev>",
"license": "MIT",
"repository": "https://github.com/Noelware/docker-manifest-action",
"bugs": "https://github.com/Noelware/docker-manifest-action/issues/new",
"keywords": [
"docker",
"docker-manifest-action",
"manifest"
],
"scripts": {
"check": "prettier --check **/*.{js,ts,json,yml,yaml,md}",
"build": "bun lint && bun check && bun build src/main.ts --outfile=build/index.js --minify --target=node",
"lint": "eslint --format codeframe --exit-on-fatal-error --stats",
"fmt": "prettier --write **/*.{js,ts,json,yml,yaml,md}"
},
"dependencies": {
"@actions/core": "3.0.0",
"@actions/exec": "3.0.0",
"@docker/actions-toolkit": "0.85.0",
"@noelware/utils": "2.5.1"
},
"devDependencies": {
"@augu/eslint-config": "5.3.1",
"@augu/tsconfig": "1.2.0",
"@stylistic/eslint-plugin": "5.10.0",
"@types/bun": "1.3.11",
"@types/js-yaml": "4.0.9",
"@types/node": "25.5.0",
"eslint-config-prettier": "10.1.8",
"eslint-formatter-codeframe": "7.32.2",
"js-yaml": "4.1.1",
"prettier": "3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1",
"zod": "4.3.6"
}
}