forked from reproducible-containers/buildkit-cache-dance
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 817 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
39
40
41
{
"name": "buildkit-cache-dance",
"version": "3.1.0",
"description": "Save `RUN --mount=type=cache` caches on GitHub Actions or other CI platforms",
"main": "dist/index.js",
"source": "src/index.ts",
"type": "module",
"scripts": {
"build": "parcel build",
"prepare": "npm run build"
},
"keywords": [
"buildkit",
"cache",
"docker",
"github",
"actions",
"workflow"
],
"author": "",
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^20.11.30",
"parcel": "^2.12.0",
"typescript": "^5.4.3"
},
"dependencies": {
"@actions/core": "~1.5.0",
"mri": "^1.2.0",
"spawn-please": "^3.0.0"
},
"targets": {
"main": {
"includeNodeModules": true,
"optimize": false
}
}
}