Files
lock-threads/package.json
dessant 6548363a2d fix: update dependencies
BREAKING CHANGE: the action now requires Node.js 24
2025-12-12 17:23:39 +02:00

51 lines
1.2 KiB
JSON

{
"name": "lock-threads",
"version": "5.0.1",
"description": "A GitHub Action that locks closed issues and pull requests after a period of inactivity.",
"author": "Armin Sebastian",
"license": "MIT",
"homepage": "https://github.com/dessant/lock-threads",
"repository": {
"url": "https://github.com/dessant/lock-threads.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/dessant/lock-threads/issues"
},
"type": "module",
"main": "src/index.js",
"scripts": {
"build": "ncc build src/index.js -o dist",
"update": "ncu --upgrade",
"release": "commit-and-tag-version",
"push": "git push --tags origin main"
},
"dependencies": {
"@actions/core": "^2.0.1",
"@actions/github": "^6.0.1",
"@octokit/plugin-throttling": "^11.0.3",
"@octokit/plugin-retry": "^8.0.3",
"joi": "^18.0.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.4",
"commit-and-tag-version": "^12.6.1",
"npm-check-updates": "^19.2.0",
"prettier": "^3.7.4"
},
"engines": {
"node": ">=24.0.0"
},
"keywords": [
"github",
"issues",
"pull requests",
"lock",
"automation",
"github actions",
"project management",
"bot"
],
"private": true
}