mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-08-31 15:42:51 +08:00
Bumps the npm-development-dependencies group with 1 update: [esbuild](https://github.com/evanw/esbuild). Updates `esbuild` from 0.28.1 to 0.28.2 - [Release notes](https://github.com/evanw/esbuild/releases) - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md) - [Commits](https://github.com/evanw/esbuild/compare/v0.28.1...v0.28.2) --- updated-dependencies: - dependency-name: esbuild dependency-version: 0.28.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
67 lines
2.0 KiB
JSON
67 lines
2.0 KiB
JSON
{
|
|
"name": "compose-action",
|
|
"description": "Docker Compose Action",
|
|
"version": "0.0.0",
|
|
"author": "hoverkraft",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/hoverkraft-tech/compose-action",
|
|
"private": true,
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/hoverkraft-tech/compose-action.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/hoverkraft-tech/compose-action/issues"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"docker-compose"
|
|
],
|
|
"exports": {
|
|
".": "./dist/index.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=24"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^3.0.1",
|
|
"@actions/github": "^9.1.1",
|
|
"@actions/tool-cache": "^4.0.0",
|
|
"@octokit/action": "^8.0.4",
|
|
"docker-compose": "^1.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"@ts-dev-tools/core": "^1.13.1",
|
|
"esbuild": "^0.28.2"
|
|
},
|
|
"scripts": {
|
|
"prepackage": "rm -rf dist",
|
|
"package": "esbuild src/index.ts src/post.ts --bundle --format=esm --platform=node --target=node24 --outdir=dist --entry-names=[name] --banner:js='import { createRequire } from \"node:module\";const require = createRequire(import.meta.url);'",
|
|
"package:watch": "npm run package -- --watch",
|
|
"lint": "biome lint --error-on-warnings .",
|
|
"lint:ci": "biome lint --error-on-warnings . --reporter=sarif | tee biome-report.sarif",
|
|
"all": "npm run format && npm run lint:ci && npm run test:ci && npm run package",
|
|
"build": "tsc --noEmit",
|
|
"format": "biome format --write .",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:cov": "vitest run --reporter=default --reporter=junit --outputFile=junit.xml --coverage.enabled --coverage.reporter=lcov --coverage.reporter=text",
|
|
"test:ci": "npm run test:cov",
|
|
"prepare": "ts-dev-tools install",
|
|
"check": "biome check --error-on-warnings --write .",
|
|
"vitest": "vitest"
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"tsDevTools": {
|
|
"version": "20260604100000-migrate-to-vitest"
|
|
},
|
|
"allowScripts": {
|
|
"esbuild@0.28.1": true
|
|
}
|
|
}
|