forked from crazy-max/ghaction-github-pages
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 927 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "github-pages",
"description": "GitHub Action to deploy to GitHub Pages",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"package": "ncc build --source-map --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crazy-max/ghaction-github-pages.git"
},
"keywords": [
"actions",
"github",
"pages",
"deploy"
],
"author": "CrazyMax",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/exec": "^1.0.4",
"addressparser": "^1.0.1",
"fs-extra": "^10.0.0"
},
"devDependencies": {
"@actions/io": "^1.1.0",
"@types/fs-extra": "^9.0.11",
"@types/node": "^15.3.0",
"@vercel/ncc": "^0.28.5",
"prettier": "^2.3.0",
"typescript": "^4.2.4",
"typescript-formatter": "^7.2.2"
}
}