mirror of
https://github.com/Azure/k8s-set-context.git
synced 2026-04-04 14:22:17 +08:00
* Migrate to ESM, esbuild, vitest, and update actions/* to latest - Update @actions/core to 3.x, @actions/exec to 3.x, @actions/io to 3.x - Replace @vercel/ncc + babel with esbuild (build.mjs) targeting Node 20 ESM - Replace jest/babel-jest/ts-jest with vitest and @vitest/coverage-v8 - Update tsconfig to NodeNext module resolution with strict mode - Add explicit .js extensions to all relative imports (NodeNext requirement) - Fix implicit any index signatures in parseCluster and parseMethod - Migrate all test files from jest to vi.mock/vi.mocked APIs - Fix ESM module spying limitations using vi.mock() at module level - Fix env var test pollution in default.test.ts with afterEach cleanup * remove build.mjs and update build script * update pkg lock * update pkg lock
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": "^5.9.3",
|
|
"vitest": "^4.1.1"
|
|
}
|
|
}
|