@concavejs/runtime-cf 0.0.1-alpha.4

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.

Potentially problematic release.


This version of @concavejs/runtime-cf might be problematic. Click here for more details.

package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@concavejs/runtime-cf",
3
+ "version": "0.0.1-alpha.4",
4
+ "license": "FSL-1.1-Apache-2.0",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "type": "module",
9
+ "description": "Cloudflare Workers runtime for Concave - local dev and self-hosted",
10
+ "main": "./dist/index.js",
11
+ "types": "./dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "default": "./dist/index.js"
16
+ },
17
+ "./internal": {
18
+ "types": "./dist/internal.d.ts",
19
+ "default": "./dist/internal.js"
20
+ }
21
+ },
22
+ "scripts": {
23
+ "build": "rm -rf dist && bun build ./src/index.ts --outfile dist/index.js --target bun --format esm --external cloudflare:workers --external @cloudflare/workers-types && bun build ./src/internal.ts --outfile dist/internal.js --target bun --format esm --external cloudflare:workers && tsc -p tsconfig.json --emitDeclarationOnly --declaration --declarationMap false --outDir dist",
24
+ "test": "bun test --run --passWithNoTests || true"
25
+ },
26
+ "dependencies": {
27
+ "@concavejs/core": "0.0.1-alpha.4",
28
+ "@concavejs/runtime-base": "0.0.1-alpha.4",
29
+ "@concavejs/runtime-cf-base": "0.0.1-alpha.4",
30
+ "@concavejs/docstore-cf-do": "0.0.1-alpha.4",
31
+ "@concavejs/docstore-cf-d1": "0.0.1-alpha.4",
32
+ "@concavejs/blobstore-cf-r2": "0.0.1-alpha.4",
33
+ "convex": "^1.27.3"
34
+ },
35
+ "devDependencies": {
36
+ "@cloudflare/workers-types": "^4.20241127.0",
37
+ "typescript": "^5.9.3"
38
+ },
39
+ "files": [
40
+ "dist"
41
+ ]
42
+ }