mirror of
https://github.com/peaceiris/actions-gh-pages.git
synced 2026-09-23 13:18:40 +00:00
chore: update Node runtime and dependencies (#1147)
Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
+37
-32
@@ -4,17 +4,17 @@
|
||||
"description": "GitHub Actions for GitHub Pages",
|
||||
"main": "lib/index.js",
|
||||
"engines": {
|
||||
"node": ">=v20.11.0",
|
||||
"npm": ">=10.2.4"
|
||||
"node": ">=24.0.0",
|
||||
"npm": ">=11.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"postinstall": "npx husky install",
|
||||
"prepare": "husky",
|
||||
"all": "npm run format && npm run lint && npm test",
|
||||
"lint": "eslint ./{src,__tests__}/**/*.ts",
|
||||
"lint:fix": "eslint --fix ./{src,__tests__}/**/*.ts",
|
||||
"test": "jest --coverage --verbose --detectOpenHandles",
|
||||
"build": "ncc build ./src/index.ts -o lib --minify",
|
||||
"tsc": "tsc",
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --verbose --detectOpenHandles",
|
||||
"build": "esbuild src/index.ts --bundle --platform=node --target=node24 --format=cjs --outfile=lib/index.js --minify",
|
||||
"tsc": "tsc --noEmit",
|
||||
"format": "prettier --write '**/*.ts'",
|
||||
"format:check": "prettier --check '**/*.ts'",
|
||||
"release": "standard-version"
|
||||
@@ -47,33 +47,38 @@
|
||||
},
|
||||
"homepage": "https://github.com/peaceiris/actions-gh-pages#readme",
|
||||
"dependencies": {
|
||||
"@actions/core": "^1.10.0",
|
||||
"@actions/exec": "^1.1.1",
|
||||
"@actions/github": "^5.1.1",
|
||||
"@actions/glob": "^0.5.0",
|
||||
"@actions/io": "^1.1.2",
|
||||
"@types/shelljs": "^0.8.11",
|
||||
"shelljs": "^0.8.5"
|
||||
"@actions/core": "3.0.1",
|
||||
"@actions/exec": "3.0.0",
|
||||
"@actions/github": "9.1.1",
|
||||
"@actions/glob": "0.7.0",
|
||||
"@actions/io": "3.0.2",
|
||||
"shelljs": "0.10.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/jest": "^29.2.6",
|
||||
"@types/js-yaml": "^4.0.5",
|
||||
"@types/node": "~16",
|
||||
"@typescript-eslint/eslint-plugin": "^5.48.2",
|
||||
"@typescript-eslint/parser": "^5.48.2",
|
||||
"@vercel/ncc": "^0.38.0",
|
||||
"eslint": "^8.32.0",
|
||||
"eslint-config-prettier": "^9.0.0",
|
||||
"eslint-plugin-jest": "^27.2.1",
|
||||
"eslint-plugin-prettier": "^4.2.1",
|
||||
"husky": "^8.0.3",
|
||||
"jest": "^29.3.1",
|
||||
"jest-circus": "^29.3.1",
|
||||
"js-yaml": "^4.1.0",
|
||||
"lint-staged": "^13.1.0",
|
||||
"prettier": "2.8.8",
|
||||
"standard-version": "^9.1.1",
|
||||
"ts-jest": "^29.0.5",
|
||||
"typescript": "^4.9.4"
|
||||
"@eslint/js": "10.0.1",
|
||||
"@types/jest": "30.0.0",
|
||||
"@types/js-yaml": "4.0.9",
|
||||
"@types/node": "25.6.2",
|
||||
"@types/shelljs": "0.10.0",
|
||||
"@typescript-eslint/eslint-plugin": "8.59.2",
|
||||
"@typescript-eslint/parser": "8.59.2",
|
||||
"esbuild": "0.28.0",
|
||||
"eslint": "10.3.0",
|
||||
"eslint-config-prettier": "10.1.8",
|
||||
"eslint-plugin-jest": "29.15.2",
|
||||
"eslint-plugin-prettier": "5.5.5",
|
||||
"globals": "17.6.0",
|
||||
"husky": "9.1.7",
|
||||
"jest": "30.4.2",
|
||||
"jest-circus": "30.4.2",
|
||||
"js-yaml": "4.1.1",
|
||||
"lint-staged": "17.0.4",
|
||||
"prettier": "3.8.3",
|
||||
"standard-version": "9.5.0",
|
||||
"ts-jest": "29.4.9",
|
||||
"typescript": "6.0.3"
|
||||
},
|
||||
"overrides": {
|
||||
"trim-newlines": "3.0.1"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user