-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
50 lines (50 loc) · 1.22 KB
/
package.json
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
45
46
47
48
49
50
{
"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": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/plugin-throttling": "^8.1.2",
"@octokit/plugin-retry": "^6.0.1",
"joi": "^17.11.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"commit-and-tag-version": "^12.0.0",
"npm-check-updates": "^16.14.6",
"prettier": "^3.0.3"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"github",
"issues",
"pull requests",
"lock",
"automation",
"github actions",
"project management",
"bot"
],
"private": true
}