summaryrefslogtreecommitdiff
path: root/packages/integrations/cloudflare/package.json
blob: 0056cec12c70edd4b76aadd4be51fe5e9ad22f36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
  "name": "@astrojs/cloudflare",
  "description": "Deploy your site to cloudflare pages functions",
  "version": "0.4.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"
  },
  "keywords": [
    "astro-adapter"
  ],
  "bugs": "https://github.com/withastro/astro/issues",
  "homepage": "https://docs.astro.build/en/guides/integrations-guide/cloudflare/",
  "exports": {
    ".": "./dist/index.js",
    "./server.advanced.js": "./dist/server.advanced.js",
    "./server.directory.js": "./dist/server.directory.js",
    "./package.json": "./package.json"
  },
  "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/"
  },
  "dependencies": {
    "esbuild": "^0.14.42"
  },
  "devDependencies": {
    "astro": "workspace:*",
    "astro-scripts": "workspace:*",
    "wrangler": "^2.0.23"
  }
}