-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.21 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.21 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@astrojs/cloudflare",
"description": "Deploy your site to Cloudflare Workers",
"version": "13.6.1",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+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": "./dist/entrypoints/server.js",
"./entrypoints/preview": "./dist/entrypoints/preview.js",
"./entrypoints/server.js": "./dist/entrypoints/server.js",
"./image-service": "./dist/entrypoints/image-service-external.js",
"./image-transform-endpoint": "./dist/entrypoints/image-transform-endpoint.js",
"./image-passthrough-endpoint": "./dist/entrypoints/image-passthrough-endpoint.js",
"./image-service-workerd": "./dist/entrypoints/image-service-workerd.js",
"./handler": "./dist/utils/handler.js",
"./fetch": "./dist/fetch.js",
"./hono": "./dist/hono.js",
"./types.d.ts": "./types.d.ts",
"./package.json": "./package.json"
},
"files": [
"dist",
"types.d.ts"
],
"scripts": {
"dev": "astro-scripts dev \"src/**/*.ts\"",
"build": "astro-scripts build \"src/**/*.ts\" --clean-dts && tsc -b",
"build:ci": "astro-scripts build \"src/**/*.ts\"",
"test": "astro-scripts test --force-exit \"test/**/*.test.ts\""
},
"dependencies": {
"@astrojs/internal-helpers": "workspace:*",
"@astrojs/underscore-redirects": "workspace:*",
"@cloudflare/vite-plugin": "^1.39.0",
"piccolore": "^0.1.3",
"tinyglobby": "^0.2.15",
"vite": "^7.3.2"
},
"peerDependencies": {
"astro": "^6.3.0",
"wrangler": "^4.83.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260526.1",
"@types/node": "^22.10.6",
"@types/prismjs": "1.26.6",
"astro": "workspace:*",
"astro-scripts": "workspace:*",
"cheerio": "1.2.0",
"devalue": "^5.8.1",
"prismjs": "^1.30.0"
},
"publishConfig": {
"provenance": true
}
}