-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "only-latest-cache",
"version": "1.0.0",
"description": "Leave only the latest cache of the corresponding key in GitHub Actions",
"main": "lib/index.js",
"scripts": {
"build": "ncc build ./src/index.ts -o lib --minify",
"tsc": "tsc",
"format": "prettier --write '**/*.ts'",
"format:check": "prettier --check '**/*.ts'"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --check",
"eslint"
]
},
"keywords": [
"GitHub Actions",
"Actions"
],
"author": "lapla",
"license": "MIT",
"bugs": {
"url": "https://github.com/lapla-cogito/only-latest-cache/issues"
},
"homepage": "https://github.com/lapla-cogito/only-latest-cache#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^21.0.2"
},
"devDependencies": {
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@vercel/ncc": "^0.38.2",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}