pages-action/package.json
Daniel Walsh 5a764d10b6
Whole bunch of general improvements (#33)
* Whole bunch of general improvements

* debug

* Fix env

* Add all outputs to workflow

* pls fail

* Fix deployment saying prod

* remove debug

* Fix alias issue
2022-12-06 16:41:26 +00:00

38 lines
950 B
JSON

{
"name": "pages-action",
"version": "1.0.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"
},
"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.6.2",
"typescript": "^4.6.4"
}
}