mirror of
https://github.com/Azure/k8s-set-context.git
synced 2026-04-04 14:22:17 +08:00
Bumps the actions group with 1 update in the / directory: [typescript](https://github.com/microsoft/TypeScript). Updates `typescript` from 5.9.3 to 6.0.2 - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.3...v6.0.2) --- updated-dependencies: - dependency-name: typescript dependency-version: 6.0.2 dependency-type: direct:development update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "k8s-set-context-action",
|
|
"version": "4.0.2",
|
|
"private": true,
|
|
"main": "lib/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc --noEmit && esbuild src/run.ts --bundle --platform=node --target=node20 --format=esm --outfile=lib/index.js --banner:js=\"import { createRequire } from 'module';const require = createRequire(import.meta.url);\"",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test-coverage": "vitest run --coverage",
|
|
"format": "prettier --write .",
|
|
"format-check": "prettier --check .",
|
|
"prepare": "husky"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^3.0.0",
|
|
"@actions/exec": "^3.0.0",
|
|
"@actions/io": "^3.0.2",
|
|
"@kubernetes/client-node": "^1.4.0",
|
|
"husky": "^9.1.7",
|
|
"js-yaml": "^4.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^25.0.9",
|
|
"esbuild": "^0.27.4",
|
|
"prettier": "^3.8.0",
|
|
"typescript": "^6.0.2",
|
|
"vitest": "^4.1.1"
|
|
}
|
|
}
|