-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
51
52
53
{
"name": "@dext7r/delete-workflow-run-logs",
"version": "1.0.1",
"description": "A GitHub Action to delete logs of a workflow run",
"repository": {
"type": "git",
"url": "https://github.com/dext7r/deleteWorkflowRunLogs"
},
"homepage": "https://github.com/dext7r/deleteWorkflowRunLogs",
"bugs": {
"url": "https://github.com/dext7r/deleteWorkflowRunLogs/issues"
},
"keywords": [
"github",
"action",
"commit",
"comment"
],
"license": "MIT",
"author": {
"name": "h7ml",
"email": "[email protected]",
"url": "https://github.com/h7ml"
},
"sideEffects": [],
"main": "./src/index.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "ncc build",
"format": "prettier --write src/*.ts",
"format-check": "prettier --check src/*.ts"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^20.1.0",
"axios": "^1.6.8",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.1",
"@types/node": "^20.12.8",
"@vercel/ncc": "0.38.1",
"eslint": "^9.1.1",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}