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",
|
2019-10-11 07:41:16 +08:00
|
|
|
"main": "lib/main.js",
|
2020-04-09 06:59:11 +08:00
|
|
|
"scripts": {
|
|
|
|
"build": "tsc && ncc build",
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
"pre-checkin": "npm run format && npm run build"
|
|
|
|
},
|
2019-10-11 07:41:16 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/crazy-max/ghaction-docker-buildx.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"github",
|
|
|
|
"pages",
|
|
|
|
"deploy"
|
|
|
|
],
|
|
|
|
"author": "CrazyMax",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2020-05-04 07:11:38 +08:00
|
|
|
"@actions/core": "^1.2.4",
|
2020-04-30 16:20:01 +08:00
|
|
|
"@actions/exec": "^1.0.4",
|
2020-03-23 16:59:40 +08:00
|
|
|
"fs-extra": "^9.0.0"
|
2019-10-11 07:41:16 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-01-17 14:58:12 +08:00
|
|
|
"@actions/io": "^1.0.2",
|
2020-02-19 00:49:54 +08:00
|
|
|
"@types/fs-extra": "^8.1.0",
|
2020-04-28 05:07:35 +08:00
|
|
|
"@types/node": "^13.13.4",
|
2020-04-09 06:59:11 +08:00
|
|
|
"@zeit/ncc": "^0.22.1",
|
2020-04-23 00:12:35 +08:00
|
|
|
"prettier": "^2.0.5",
|
2020-03-02 18:13:45 +08:00
|
|
|
"typescript": "^3.8.3",
|
2019-10-11 07:41:16 +08:00
|
|
|
"typescript-formatter": "^7.2.2"
|
|
|
|
}
|
2020-04-09 06:59:11 +08:00
|
|
|
}
|