Files
actions-gh-pages/package.json
T
renovate[bot] c41461e97c chore(deps): update typescript-eslint monorepo to v8.60.1 (#1179)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-06-02 11:21:07 +09:00

85 lines
2.3 KiB
JSON

{
"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.1",
"@types/shelljs": "0.10.0",
"@typescript-eslint/eslint-plugin": "8.60.1",
"@typescript-eslint/parser": "8.60.1",
"esbuild": "0.28.0",
"eslint": "10.4.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jest": "29.15.2",
"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.7",
"prettier": "3.8.3",
"standard-version": "9.5.0",
"ts-jest": "29.4.11",
"typescript": "6.0.3"
},
"overrides": {
"trim-newlines": "5.0.0"
}
}