forked from cloudflare/pages-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 949 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 949 Bytes
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": "pages-action",
"version": "1.6.0",
"description": "Publish to Cloudflare Pages",
"main": "index.js",
"scripts": {
"build": "npx esbuild src/index.ts --bundle --platform=node --target=node20 --outfile=index.js",
"prepare": "husky install",
"prettify": "prettier . --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudflare/pages-action.git"
},
"keywords": [
"Cloudflare Pages",
"GitHub Actions"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudflare/pages-action/issues"
},
"homepage": "https://github.com/cloudflare/pages-action#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"@cloudflare/types": "^6.29.1",
"shellac": "^0.8.0",
"undici": "^5.11.0"
},
"devDependencies": {
"@types/node": "^20.14.8",
"esbuild": "^0.23.1",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"typescript": "^4.6.4"
}
}