-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 KB
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
39
40
41
42
43
44
45
46
{
"name": "github-pages",
"description": "GitHub Action to deploy to GitHub Pages",
"type": "module",
"main": "src/main.ts",
"scripts": {
"build": "ncc build src/main.ts --source-map --minify --license licenses.txt",
"lint": "eslint --max-warnings=0 .",
"format": "eslint --fix .",
"all": "yarn run build && yarn run format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crazy-max/ghaction-github-pages.git"
},
"keywords": [
"actions",
"github",
"pages",
"deploy"
],
"author": "CrazyMax",
"license": "MIT",
"packageManager": "yarn@4.12.0",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"addressparser": "^1.0.1",
"fs-extra": "^11.3.3"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@types/addressparser": "^1.0.3",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.3.3",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vercel/ncc": "^0.38.4",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
}
}