You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
880 B
JSON
36 lines
880 B
JSON
3 years ago
|
{
|
||
|
"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.8.0",
|
||
|
"@actions/github": "^5.0.1",
|
||
|
"shellac": "^0.7.0",
|
||
|
"undici": "^5.1.1"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"esbuild": "^0.14.38",
|
||
|
"husky": "^8.0.1",
|
||
|
"prettier": "^2.6.2",
|
||
|
"typescript": "^4.6.4"
|
||
|
}
|
||
|
}
|