mirror of
https://github.com/redhat-actions/buildah-build.git
synced 2025-04-13 22:51:23 +00:00
* Update GitHub Actions workflows to latest versions * Update dependencies & run on Node 20
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "buildah-build",
|
|
"version": "3.0",
|
|
"engines": {
|
|
"node": "20"
|
|
},
|
|
"description": "Action for building OCI-compatible images using buildah",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/redhat-actions/buildah-build"
|
|
},
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"compile": "tsc -p .",
|
|
"bundle": "ncc build src/index.ts --source-map --minify",
|
|
"clean": "rm -rf out/ dist/",
|
|
"lint": "eslint . --max-warnings=0",
|
|
"generate-ios": "npx action-io-generator -w -o ./src/generated/inputs-outputs.ts"
|
|
},
|
|
"keywords": [],
|
|
"author": "Red Hat",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "1.10.1",
|
|
"@actions/exec": "1.1.1",
|
|
"@actions/io": "1.1.3",
|
|
"ini": "4.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@redhat-actions/action-io-generator": "1.5.0",
|
|
"@redhat-actions/eslint-config": "1.3.2",
|
|
"@redhat-actions/tsconfig": "1.2.0",
|
|
"@types/ini": "1.3.31",
|
|
"@types/node": "^20.0",
|
|
"@typescript-eslint/eslint-plugin": "6.7.3",
|
|
"@typescript-eslint/parser": "6.7.3",
|
|
"@vercel/ncc": "0.38.0",
|
|
"eslint": "8.50.0",
|
|
"typescript": "5.2.2"
|
|
}
|
|
}
|