forked from reproducible-containers/buildkit-cache-dance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.21 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.21 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
44
45
46
47
48
49
50
51
52
53
54
{
"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",
"bin": {
"buildkit-cache-dance": "dist/index.js"
},
"scripts": {
"build": "parcel build --target dist --detailed-report",
"prepare": "npm run build",
"test": "node --enable-source-maps ./node_modules/vitest/vitest.mjs "
},
"keywords": [
"buildkit",
"cache",
"docker",
"github",
"actions",
"workflow"
],
"author": "",
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^22.15.18",
"parcel": "^2.15.1",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"dependencies": {
"@actions/core": "=1.8.0",
"dockerfile-ast": "^0.7.0",
"mri": "^1.2.0",
"spawn-please": "^3.0.0"
},
"packageManager": "pnpm@10.11.0",
"targets": {
"dist": {
"context": "node",
"outputFormat": "esmodule",
"source": "src/index.ts",
"distDir": "dist",
"isLibrary": false,
"includeNodeModules": true,
"optimize": true,
"scopeHoist": false
}
}
}