-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
34 lines (34 loc) · 849 Bytes
/
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
{
"name": "delete-artifact",
"description": "Deletes artifacts from a workflow run",
"version": "5.1.0",
"main": "src/index.ts",
"scripts": {
"build": "ncc build",
"watch": "ncc build -w"
},
"keywords": [
"github",
"github-actions",
"delete-artifact",
"artifact"
],
"author": "GeekyEggo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/geekyeggo/delete-artifact"
},
"dependencies": {
"@actions/artifact": "^2.1.7",
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"minimatch": "^9.0.3"
},
"devDependencies": {
"@types/minimatch": "^5.1.2",
"@types/node": "^20.10.5",
"@vercel/ncc": "^0.38.1",
"typescript": "^5.3.3"
}
}