Files
conventional-semantic-git-t…/package.json
T
t.behrendt 9763964007
CI / Check Dist (pull_request) Successful in 11s
CI / Test (pull_request) Successful in 12s
CI / Dry-Run Prerelease (pull_request) Successful in 8s
CI / Dry-Run (pull_request) Successful in 42s
refactor: replace jest with vitest
2026-07-18 07:45:57 +02:00

27 lines
737 B
JSON

{
"name": "conventional-semantic-git-tag-increment",
"description": "GitHub Action to increment semantic version tag based on conventional commits",
"main": "src/index.ts",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "rolldown -c",
"test": "vitest",
"format": "oxfmt --write src/**/*.ts"
},
"author": "Timo Behrendt <t.behrendt@t00n.de>",
"license": "MIT",
"devDependencies": {
"@types/conventional-commits-parser": "5.0.2",
"@types/node": "24.13.2",
"@vitest/coverage-v8": "4.1.10",
"oxfmt": "0.59.0",
"rolldown": "1.2.0",
"typescript": "5.9.3",
"vitest": "4.1.10"
},
"dependencies": {
"@actions/core": "3.0.1",
"conventional-commits-parser": "3.2.4"
}
}