mirror of
https://github.com/actions/runner-container-hooks.git
synced 2025-12-16 01:36:45 +00:00
* bump actions * experiment using init container to prepare working environment * rm script before continuing * fix * Update packages/k8s/src/hooks/run-script-step.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * leverage exec stat instead of printf * npm update * document the new constraint --------- Co-authored-by: DenisPalnitsky <DenisPalnitsky@users.noreply.github.com>
38 lines
922 B
JSON
38 lines
922 B
JSON
{
|
|
"name": "kubehooks",
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"test": "jest --runInBand",
|
|
"build": "tsc && npx ncc build",
|
|
"format": "prettier --write '**/*.ts'",
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
"lint": "eslint src/**/*.ts"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/io": "^1.1.3",
|
|
"@kubernetes/client-node": "^1.3.0",
|
|
"hooklib": "file:../hooklib",
|
|
"js-yaml": "^4.1.0",
|
|
"shlex": "^3.0.0",
|
|
"tar-fs": "^3.1.0",
|
|
"uuid": "^11.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.28.3",
|
|
"@babel/preset-env": "^7.28.3",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.3.0",
|
|
"@vercel/ncc": "^0.38.3",
|
|
"babel-jest": "^30.1.1",
|
|
"jest": "^30.1.1",
|
|
"ts-jest": "^29.4.1",
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|