-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
38 lines (38 loc) · 965 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
35
36
37
38
{
"name": "ccache-action",
"version": "1.0.0",
"description": "github action to speedup building using ccache",
"main": "dist/restore/index.js",
"scripts": {
"prepare": "ncc build --target es2020 -o dist/restore src/restore.ts && ncc build --target es2020 -o dist/save src/save.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hendrikmuhs/ccache-action.git"
},
"keywords": [
"actions",
"ccache",
"cache",
"c++",
"cpp",
"c"
],
"author": "Hendrik Muhs",
"license": "MIT",
"dependencies": {
"@actions/cache": "^3.2.4",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3"
},
"devDependencies": {
"@types/node": "^22.8.6",
"@vercel/ncc": "^0.38.1",
"typescript": "^5.6.3"
},
"bugs": {
"url": "https://github.com/hendrikmuhs/ccache-action/issues"
},
"homepage": "https://github.com/hendrikmuhs/ccache-action#readme"
}