@rubar/lavish-publish-cf 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,19 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "module": "ES2022",
5
+ "moduleResolution": "Bundler",
6
+ "lib": ["ES2022"],
7
+ "types": ["@cloudflare/workers-types"],
8
+ "strict": true,
9
+ "noImplicitAny": true,
10
+ "esModuleInterop": true,
11
+ "skipLibCheck": true,
12
+ "forceConsistentCasingInFileNames": true,
13
+ "resolveJsonModule": true,
14
+ "isolatedModules": true,
15
+ "noEmit": true
16
+ },
17
+ "include": ["src/**/*.ts"],
18
+ "exclude": ["node_modules", "cli"]
19
+ }
@@ -0,0 +1,16 @@
1
+ name = "publish-cloudflare"
2
+ main = "src/index.ts"
3
+ compatibility_date = "2026-05-13"
4
+
5
+ # Optional: set this to your custom view domain once configured.
6
+ # If unset, the worker uses its own URL with /v/{slug}.
7
+ # [vars]
8
+ # VIEW_BASE_URL = "https://view.example.com"
9
+
10
+ # KV namespace binding for stored pages.
11
+ # Create with: npx wrangler kv namespace create PAGES
12
+ # Then paste the returned id below.
13
+ [[kv_namespaces]]
14
+ binding = "PAGES"
15
+ id = "15dcacac77c2441b9a7ced9eddbacec3"
16
+ # preview_id = "REPLACE_WITH_PREVIEW_KV_NAMESPACE_ID" # optional, for `wrangler dev --remote`