ghaction-github-pages/package.json

37 lines
872 B
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",
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",
2020-06-11 04:14:24 +08:00
"pre-checkin": "yarn run format && yarn run build"
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",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
2020-11-12 13:27:44 +08:00
"addressparser": "^1.0.1"
2019-10-11 07:41:16 +08:00
},
"devDependencies": {
"@actions/io": "^1.0.2",
2020-10-02 02:00:30 +08:00
"@types/node": "^14.11.2",
"@vercel/ncc": "^0.24.1",
"prettier": "^2.1.2",
"typescript": "^4.0.3",
2019-10-11 07:41:16 +08:00
"typescript-formatter": "^7.2.2"
}
2020-05-11 21:00:05 +08:00
}