{ "name": "actions-github-pages", "version": "4.1.0", "description": "GitHub Actions for GitHub Pages", "main": "lib/index.js", "engines": { "node": ">=24.0.0", "npm": ">=11.0.0" }, "scripts": { "prepare": "husky", "all": "npm run format && npm run lint && npm test", "lint": "eslint ./{src,__tests__}/**/*.ts", "lint:fix": "eslint --fix ./{src,__tests__}/**/*.ts", "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" }, "lint-staged": { "{src,__tests__}/**/*.ts": [ "prettier --check", "eslint" ], "README.md": [ "npx doctoc@2.1.0 --github" ] }, "repository": { "type": "git", "url": "git+https://github.com/peaceiris/actions-gh-pages.git" }, "keywords": [ "GitHub Actions", "Actions", "JavaScript Action", "TypeScript Action", "GitHub Pages", "gh-pages" ], "author": "peaceiris", "license": "MIT", "bugs": { "url": "https://github.com/peaceiris/actions-gh-pages/issues" }, "homepage": "https://github.com/peaceiris/actions-gh-pages#readme", "dependencies": { "@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": { "@eslint/js": "10.0.1", "@types/jest": "30.0.0", "@types/js-yaml": "4.0.9", "@types/node": "25.9.4", "@types/shelljs": "0.10.0", "@typescript-eslint/eslint-plugin": "8.61.0", "@typescript-eslint/parser": "8.61.0", "esbuild": "0.28.1", "eslint": "10.5.0", "eslint-config-prettier": "10.1.8", "eslint-plugin-jest": "29.15.5", "eslint-plugin-prettier": "5.5.6", "globals": "17.6.0", "husky": "9.1.7", "jest": "30.4.2", "jest-circus": "30.4.2", "js-yaml": "4.2.0", "lint-staged": "17.0.8", "prettier": "3.8.4", "standard-version": "9.5.0", "ts-jest": "29.4.11", "typescript": "6.0.3" }, "overrides": { "trim-newlines": "5.0.0" } }