-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 808 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 808 Bytes
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
{
"name": "dependabot-error-alerts",
"version": "1.0.0",
"description": "GitHub Action to monitor and alert on Dependabot workflow failures",
"author": "Eric Case",
"license": "MIT",
"engines": {
"node": ">=24"
},
"keywords": [
"github-action",
"dependabot",
"monitoring",
"alerts"
],
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsdown",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/case/dependabot-error-alerts.git"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1"
},
"devDependencies": {
"@types/node": "^24.10.1",
"tsdown": "^0.17.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
}
}