mirror of
https://github.com/cloudflare/pages-action
synced 2024-11-11 22:48:01 +00:00
39 lines
951 B
JSON
39 lines
951 B
JSON
{
|
|
"name": "pages-action",
|
|
"version": "1.5.0",
|
|
"description": "Publish to Cloudflare Pages",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "npx esbuild src/index.ts --bundle --platform=node --target=es2021 --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.0",
|
|
"@actions/github": "^5.1.1",
|
|
"@cloudflare/types": "^6.18.16",
|
|
"shellac": "^0.7.2",
|
|
"undici": "^5.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.11.3",
|
|
"esbuild": "^0.15.12",
|
|
"husky": "^8.0.1",
|
|
"prettier": "^2.8.1",
|
|
"typescript": "^4.6.4"
|
|
}
|
|
}
|