astro/packages/integrations/cloudflare/package.json

60 lines
1.6 KiB
JSON
Raw Normal View History

{
"name": "@astrojs/cloudflare",
"description": "Deploy your site to Cloudflare Workers/Pages",
"version": "7.0.0",
"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"
},
2022-07-08 20:57:10 +00:00
"keywords": [
"withastro",
2022-07-08 20:57:10 +00:00
"astro-adapter"
],
"bugs": "https://github.com/withastro/astro/issues",
"homepage": "https://docs.astro.build/en/guides/integrations-guide/cloudflare/",
"exports": {
".": "./dist/index.js",
"./runtime": {
"types": "./runtime.d.ts",
"default": "./dist/runtime.js"
},
"./server.advanced.js": "./dist/server.advanced.js",
"./server.directory.js": "./dist/server.directory.js",
"./package.json": "./package.json"
},
2023-05-17 08:54:00 +00:00
"files": [
"dist",
"runtime.d.ts"
],
"scripts": {
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"build:ci": "astro-scripts build \"src/**/*.ts\"",
"dev": "astro-scripts dev \"src/**/*.ts\"",
"test": "mocha --exit --timeout 30000 test/",
"test:match": "mocha --exit --timeout 30000 -g"
},
"dependencies": {
2023-08-01 11:15:39 +00:00
"@astrojs/underscore-redirects": "workspace:*",
2023-08-23 11:52:13 +00:00
"@cloudflare/workers-types": "^4.20230821.0",
2023-08-24 08:34:33 +00:00
"esbuild": "^0.19.2",
"tiny-glob": "^0.2.9"
},
"peerDependencies": {
"astro": "workspace:^3.0.6"
},
"devDependencies": {
"astro": "workspace:*",
"astro-scripts": "workspace:*",
2023-06-21 13:09:49 +00:00
"chai": "^4.3.7",
"cheerio": "1.0.0-rc.12",
2023-08-17 15:24:01 +00:00
"kill-port": "^2.0.1",
2023-08-24 08:34:33 +00:00
"mocha": "^10.2.0",
2023-08-23 11:52:13 +00:00
"wrangler": "^3.5.1"
}
2022-06-16 14:14:44 +00:00
}