@prisma/streams-server 0.0.1

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/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @prisma/streams-server
2
+
3
+ This package is currently a published stub.
4
+
5
+ Version `0.0.1` reserves the package name and ships an empty entrypoint while the real API is being developed.
@@ -0,0 +1 @@
1
+ export { };
@@ -0,0 +1 @@
1
+ export { };
package/build/index.js ADDED
File without changes
@@ -0,0 +1 @@
1
+ export { };
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "private": false,
3
+ "name": "@prisma/streams-server",
4
+ "version": "0.0.1",
5
+ "description": "Stub package reserved for the Prisma Streams server runtime.",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/prisma/streams.git"
9
+ },
10
+ "author": {
11
+ "name": "Alberto Schiabel",
12
+ "email": "alberto.schiabel@gmail.com"
13
+ },
14
+ "license": "MIT",
15
+ "files": [
16
+ "build"
17
+ ],
18
+ "main": "./build/index.js",
19
+ "module": "./build/index.mjs",
20
+ "types": "./build/index.d.ts",
21
+ "exports": {
22
+ ".": {
23
+ "import": {
24
+ "@prisma/source": "./src/index.ts",
25
+ "types": "./build/index.d.mts",
26
+ "import": "./build/index.mjs",
27
+ "default": "./build/index.mjs"
28
+ },
29
+ "require": {
30
+ "@prisma/source": "./src/index.ts",
31
+ "types": "./build/index.d.ts",
32
+ "import": "./build/index.js",
33
+ "default": "./build/index.js"
34
+ }
35
+ },
36
+ "./package.json": "./package.json"
37
+ },
38
+ "publishConfig": {
39
+ "access": "public"
40
+ },
41
+ "scripts": {
42
+ "clean": "rimraf build .turbo",
43
+ "build": "tsdown --config-loader unrun",
44
+ "build:watch": "tsdown --config-loader unrun --watch",
45
+ "check:exports": "attw --pack .",
46
+ "typecheck": "tsc --noEmit -p tsconfig.build.json"
47
+ }
48
+ }