ghaction-github-pages/package.json

48 lines
1.3 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-09-10 02:24:16 +08:00
"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"
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-09-10 02:21:31 +08:00
"packageManager": "yarn@3.6.3",
2019-10-11 07:41:16 +08:00
"dependencies": {
"@actions/core": "^1.10.0",
2023-05-06 21:07:15 +08:00
"@actions/exec": "^1.1.1",
"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-09-10 02:22:09 +08:00
"@types/node": "^20.6.0",
2023-09-10 02:24:16 +08:00
"@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",
2023-05-06 20:52:49 +08:00
"ts-node": "^10.9.1",
2023-09-10 02:24:16 +08:00
"typescript": "^5.2.2"
2019-10-11 07:41:16 +08:00
}
2020-05-11 21:00:05 +08:00
}