@concavejs/runtime-cf-base 0.0.1-alpha.4 → 0.0.1-alpha.5
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.
- package/package.json +84 -35
package/package.json
CHANGED
|
@@ -1,45 +1,94 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@concavejs/runtime-cf-base",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.5",
|
|
4
4
|
"license": "FSL-1.1-Apache-2.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
8
|
"type": "module",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
9
10
|
"exports": {
|
|
10
|
-
".":
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"./http": "./dist/http/index.js",
|
|
14
|
-
"./http/http-api": "./dist/http/http-api.js",
|
|
15
|
-
"./http/dx-http": "./dist/http/dx-http.js",
|
|
16
|
-
"./rpc": "./dist/rpc/index.js",
|
|
17
|
-
"./udf/executor": "./dist/udf/executor/index.js",
|
|
18
|
-
"./udf/executor/inline-executor": "./dist/udf/executor/inline-executor.js",
|
|
19
|
-
"./udf/executor/isolated-executor": "./dist/udf/executor/isolated-executor.js",
|
|
20
|
-
"./udf/executor/do-client-executor": "./dist/udf/executor/do-client-executor.js",
|
|
21
|
-
"./udf/executor/shim-content": "./dist/udf/executor/shim-content.js",
|
|
22
|
-
"./worker": "./dist/worker/index.js",
|
|
23
|
-
"./worker/create-concave-worker": "./dist/worker/create-concave-worker.js",
|
|
24
|
-
"./worker/udf-worker": "./dist/worker/udf-worker.js",
|
|
25
|
-
"./sync": "./dist/sync/index.js"
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"default": "./dist/index.js"
|
|
26
14
|
},
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
15
|
+
"./internal": {
|
|
16
|
+
"types": "./dist/internal.d.ts",
|
|
17
|
+
"default": "./dist/internal.js"
|
|
18
|
+
},
|
|
19
|
+
"./adapters/cf-websocket-adapter": {
|
|
20
|
+
"types": "./dist/adapters/cf-websocket-adapter.d.ts",
|
|
21
|
+
"default": "./dist/adapters/cf-websocket-adapter.js"
|
|
22
|
+
},
|
|
23
|
+
"./http": {
|
|
24
|
+
"types": "./dist/http/index.d.ts",
|
|
25
|
+
"default": "./dist/http/index.js"
|
|
26
|
+
},
|
|
27
|
+
"./http/http-api": {
|
|
28
|
+
"types": "./dist/http/http-api.d.ts",
|
|
29
|
+
"default": "./dist/http/http-api.js"
|
|
30
|
+
},
|
|
31
|
+
"./http/dx-http": {
|
|
32
|
+
"types": "./dist/http/dx-http.d.ts",
|
|
33
|
+
"default": "./dist/http/dx-http.js"
|
|
34
|
+
},
|
|
35
|
+
"./rpc": {
|
|
36
|
+
"types": "./dist/rpc/index.d.ts",
|
|
37
|
+
"default": "./dist/rpc/index.js"
|
|
38
|
+
},
|
|
39
|
+
"./udf/executor": {
|
|
40
|
+
"types": "./dist/udf/executor/index.d.ts",
|
|
41
|
+
"default": "./dist/udf/executor/index.js"
|
|
42
|
+
},
|
|
43
|
+
"./udf/executor/inline-executor": {
|
|
44
|
+
"types": "./dist/udf/executor/inline-executor.d.ts",
|
|
45
|
+
"default": "./dist/udf/executor/inline-executor.js"
|
|
46
|
+
},
|
|
47
|
+
"./udf/executor/isolated-executor": {
|
|
48
|
+
"types": "./dist/udf/executor/isolated-executor.d.ts",
|
|
49
|
+
"default": "./dist/udf/executor/isolated-executor.js"
|
|
50
|
+
},
|
|
51
|
+
"./udf/executor/do-client-executor": {
|
|
52
|
+
"types": "./dist/udf/executor/do-client-executor.d.ts",
|
|
53
|
+
"default": "./dist/udf/executor/do-client-executor.js"
|
|
54
|
+
},
|
|
55
|
+
"./udf/executor/shim-content": {
|
|
56
|
+
"types": "./dist/udf/executor/shim-content.d.ts",
|
|
57
|
+
"default": "./dist/udf/executor/shim-content.js"
|
|
58
|
+
},
|
|
59
|
+
"./worker": {
|
|
60
|
+
"types": "./dist/worker/index.d.ts",
|
|
61
|
+
"default": "./dist/worker/index.js"
|
|
62
|
+
},
|
|
63
|
+
"./worker/create-concave-worker": {
|
|
64
|
+
"types": "./dist/worker/create-concave-worker.d.ts",
|
|
65
|
+
"default": "./dist/worker/create-concave-worker.js"
|
|
66
|
+
},
|
|
67
|
+
"./worker/udf-worker": {
|
|
68
|
+
"types": "./dist/worker/udf-worker.d.ts",
|
|
69
|
+
"default": "./dist/worker/udf-worker.js"
|
|
70
|
+
},
|
|
71
|
+
"./sync": {
|
|
72
|
+
"types": "./dist/sync/index.d.ts",
|
|
73
|
+
"default": "./dist/sync/index.js"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"files": [
|
|
77
|
+
"dist"
|
|
78
|
+
],
|
|
79
|
+
"scripts": {
|
|
80
|
+
"build": "rm -rf dist && tsc -p tsconfig.json --noCheck",
|
|
81
|
+
"test": "bun test --run --passWithNoTests || true"
|
|
82
|
+
},
|
|
83
|
+
"dependencies": {
|
|
84
|
+
"@concavejs/core": "0.0.1-alpha.5",
|
|
85
|
+
"@concavejs/runtime-base": "0.0.1-alpha.5",
|
|
86
|
+
"@concavejs/docstore-cf-do": "0.0.1-alpha.5",
|
|
87
|
+
"@concavejs/docstore-cf-d1": "0.0.1-alpha.5",
|
|
88
|
+
"@concavejs/blobstore-cf-r2": "0.0.1-alpha.5",
|
|
89
|
+
"convex": "^1.27.3"
|
|
90
|
+
},
|
|
91
|
+
"devDependencies": {
|
|
92
|
+
"@cloudflare/workers-types": "^4.20251001.0"
|
|
93
|
+
}
|
|
45
94
|
}
|