-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 KB
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
{
"name": "ccache-action",
"version": "1.0.0",
"description": "github action to speedup building using ccache",
"main": "dist/restore/index.js",
"scripts": {
"metadata": "metadata/generate.sh",
"prepare": "ncc build --target es2020 -o dist/restore src/restore.ts && ncc build --target es2020 -o dist/save src/save.ts",
"test": "NODE_OPTIONS='--experimental-vm-modules' npx jest"
},
"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": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/io": "^3.0.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@vercel/ncc": "^0.38.4",
"jest": "^30.3.0",
"ts-jest": "^29.4.4",
"typescript": "^5.9.3"
},
"bugs": {
"url": "https://github.com/hendrikmuhs/ccache-action/issues"
},
"homepage": "https://github.com/hendrikmuhs/ccache-action#readme"
}