ghaction-github-pages/package.json

43 lines
1.1 KiB
JSON
Raw Normal View History

2019-10-11 07:41:16 +08:00
{
"name": "github-pages",
2019-10-11 08:25:58 +08:00
"description": "GitHub Action to deploy to GitHub Pages",
2023-05-06 20:32:28 +08:00
"main": "src/main.ts",
2020-04-09 06:59:11 +08:00
"scripts": {
2023-05-06 20:32:28 +08:00
"build": "ncc build --source-map --minify --license licenses.txt",
"lint": "eslint src/**/*.ts",
2023-05-06 20:32:28 +08:00
"format": "eslint --fix src/**/*.ts"
2020-04-09 06:59:11 +08:00
},
2019-10-11 07:41:16 +08:00
"repository": {
"type": "git",
"url": "git+https://github.com/crazy-max/ghaction-github-pages.git"
2019-10-11 07:41:16 +08:00
},
"keywords": [
"actions",
"github",
"pages",
"deploy"
],
"author": "CrazyMax",
"license": "MIT",
2023-05-06 20:32:28 +08:00
"packageManager": "yarn@3.5.1",
2019-10-11 07:41:16 +08:00
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.0",
"addressparser": "^1.0.1",
2023-05-06 21:02:20 +08:00
"fs-extra": "^11.1.1"
2019-10-11 07:41:16 +08:00
},
"devDependencies": {
2023-05-06 21:02:20 +08:00
"@types/fs-extra": "^11.0.1",
2023-05-06 20:52:49 +08:00
"@types/node": "^16.18.26",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
2019-10-11 07:41:16 +08:00
}
2020-05-11 21:00:05 +08:00
}