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",
|
|
|
|
"directories": {
|
|
|
|
"lib": "lib"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
"prune": "npm prune --production"
|
|
|
|
},
|
|
|
|
"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-01-24 16:56:40 +08:00
|
|
|
"@actions/core": "^1.2.2",
|
2020-01-17 14:55:16 +08:00
|
|
|
"@actions/exec": "^1.0.3",
|
2019-11-15 23:20:34 +08:00
|
|
|
"fs-extra": "^8.1.0"
|
2019-10-11 07:41:16 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-01-17 14:58:12 +08:00
|
|
|
"@actions/io": "^1.0.2",
|
2019-11-15 23:20:34 +08:00
|
|
|
"@types/fs-extra": "^8.0.1",
|
2020-02-03 18:12:22 +08:00
|
|
|
"@types/node": "^13.7.0",
|
2019-11-12 07:07:13 +08:00
|
|
|
"prettier": "^1.19.1",
|
2020-01-17 17:27:40 +08:00
|
|
|
"typescript": "^3.7.5",
|
2019-10-11 07:41:16 +08:00
|
|
|
"typescript-formatter": "^7.2.2"
|
|
|
|
}
|
|
|
|
}
|