s3-cache/package.json
Maximilian Jugl b04a255b4c
All checks were successful
Check build / check-dist (push) Successful in 1m24s
Run tests / Run vitest integration tests (push) Successful in 1m29s
feat: initial
2026-04-23 09:49:39 +02:00

29 lines
722 B
JSON

{
"name": "s3-cache-action",
"version": "1.0.0",
"private": true,
"main": "src/index.js",
"scripts": {
"build": "esbuild src/index.js --bundle --platform=node --target=node20 --format=cjs --outfile=dist/index.js --minify",
"prepare": "husky",
"test": "vitest run"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/glob": "^0.6.1",
"@actions/io": "^3.0.2",
"@aws-sdk/client-s3": "^3.1033.0",
"@aws-sdk/lib-storage": "^3.1033.0"
},
"devDependencies": {
"esbuild": "^0.28.0",
"husky": "^9.1.7",
"prettier": "^3.8.3",
"testcontainers": "^11.14.0",
"vitest": "^4.1.4"
},
"overrides": {
"glob": "^13.0.0"
}
}