0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-10 23:01:26 -05:00
astro/packages/integrations/cloudflare/package.json
Emanuele Stoppa 74c0bbeb39
chore: fix linting issues, integration tests (#13187)
* chore: fix linting issues

* chore: update packages and directories

* apply suggestions

Co-authored-by: florian-lefebvre <69633530+florian-lefebvre@users.noreply.github.com>
2025-02-07 14:59:13 +00:00

62 lines
1.7 KiB
JSON

{
"name": "@astrojs/cloudflare",
"description": "Deploy your site to Cloudflare Workers/Pages",
"version": "12.2.1",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/withastro/astro.git",
"directory": "packages/integrations/cloudflare"
},
"keywords": [
"withastro",
"astro-adapter"
],
"bugs": "https://github.com/withastro/astro/issues",
"homepage": "https://docs.astro.build/en/guides/integrations-guide/cloudflare/",
"exports": {
".": "./dist/index.js",
"./entrypoints/server.js": "./dist/entrypoints/server.js",
"./entrypoints/middleware.js": "./dist/entrypoints/middleware.js",
"./image-service": "./dist/entrypoints/image-service.js",
"./image-endpoint": "./dist/entrypoints/image-endpoint.js",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"test": "astro-scripts test \"test/**/*.test.js\""
},
"dependencies": {
"@astrojs/internal-helpers": "0.4.2",
"@astrojs/underscore-redirects": "^0.6.0",
"@cloudflare/workers-types": "^4.20250109.0",
"esbuild": "^0.24.0",
"estree-walker": "^3.0.3",
"magic-string": "^0.30.17",
"miniflare": "^3.20241230.1",
"tiny-glob": "^0.2.9",
"vite": "^6.0.7",
"wrangler": "^3.101.0"
},
"peerDependencies": {
"astro": "^5.0.0"
},
"devDependencies": {
"astro": "workspace:*",
"astro-scripts": "workspace:*",
"cheerio": "1.0.0",
"execa": "^8.0.1",
"fast-glob": "^3.3.3",
"rollup": "^4.30.1",
"strip-ansi": "^7.1.0"
},
"publishConfig": {
"provenance": true
}
}