ghaction-github-pages/package.json
2023-09-09 20:24:16 +02:00

48 lines
1.3 KiB
JSON

{
"name": "github-pages",
"description": "GitHub Action to deploy to GitHub Pages",
"main": "src/main.ts",
"scripts": {
"build": "ncc build src/main.ts --source-map --minify --license licenses.txt",
"lint": "yarn run prettier && yarn run eslint",
"format": "yarn run prettier:fix && yarn run eslint:fix",
"eslint": "eslint --max-warnings=0 .",
"eslint:fix": "eslint --fix .",
"prettier": "prettier --check \"./**/*.ts\"",
"prettier:fix": "prettier --write \"./**/*.ts\"",
"all": "yarn run build && yarn run format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crazy-max/ghaction-github-pages.git"
},
"keywords": [
"actions",
"github",
"pages",
"deploy"
],
"author": "CrazyMax",
"license": "MIT",
"packageManager": "yarn@3.6.3",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"addressparser": "^1.0.1",
"fs-extra": "^11.1.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}