mirror of
https://github.com/peaceiris/actions-gh-pages.git
synced 2026-09-23 21:28:39 +00:00
85 lines
2.3 KiB
JSON
85 lines
2.3 KiB
JSON
{
|
|
"name": "actions-github-pages",
|
|
"version": "4.0.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.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"
|
|
}
|
|
}
|