@concavejs/runtime-bun 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-bun might be problematic. Click here for more details.
- package/README.md +81 -0
- package/dist/index.js +46445 -0
- package/dist/server/index.js +44533 -0
- package/package.json +38 -0
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@concavejs/runtime-bun",
|
|
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": "Bun runtime implementation for Concave",
|
|
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
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "rm -rf dist && bun build ./src/index.ts --outfile dist/index.js --target bun --format esm && bun build ./src/server/index.ts --outfile dist/server/index.js --target bun --format esm && tsc -p tsconfig.json --emitDeclarationOnly --declaration --declarationMap false --outDir dist",
|
|
20
|
+
"dev": "bun run --watch src/server/dev.ts",
|
|
21
|
+
"test": "bun test"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@concavejs/core": "0.0.1-alpha.4",
|
|
25
|
+
"@concavejs/runtime-base": "0.0.1-alpha.4",
|
|
26
|
+
"@concavejs/docstore-bun-sqlite": "0.0.1-alpha.4",
|
|
27
|
+
"@concavejs/blobstore-bun-fs": "0.0.1-alpha.4",
|
|
28
|
+
"@concavejs/blobstore-bun-s3": "0.0.1-alpha.4",
|
|
29
|
+
"convex": "^1.27.3"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@types/bun": "^1.1.14",
|
|
33
|
+
"typescript": "^5.9.3"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"dist"
|
|
37
|
+
]
|
|
38
|
+
}
|