@roastery/barista 0.0.3 → 0.0.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/dist/index.d.cts CHANGED
@@ -28,5 +28,6 @@ declare function barista<BasePath extends string = "">(config?: ElysiaConfig<Bas
28
28
  standaloneSchema: {};
29
29
  response: {};
30
30
  }>;
31
+ type Barista = Elysia;
31
32
 
32
- export { barista };
33
+ export { type Barista, barista };
package/dist/index.d.ts CHANGED
@@ -28,5 +28,6 @@ declare function barista<BasePath extends string = "">(config?: ElysiaConfig<Bas
28
28
  standaloneSchema: {};
29
29
  response: {};
30
30
  }>;
31
+ type Barista = Elysia;
31
32
 
32
- export { barista };
33
+ export { type Barista, barista };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@roastery/barista",
3
3
  "description": "Elysia HTTP server factory for the Roastery CMS ecosystem",
4
- "version": "0.0.3",
4
+ "version": "0.0.5",
5
5
  "type": "module",
6
6
  "author": {
7
7
  "name": "Alan Reis",
@@ -63,7 +63,9 @@
63
63
  "peerDependencies": {
64
64
  "typescript": "^5",
65
65
  "@types/bun": "latest",
66
- "tsup": "^8.5.1",
66
+ "tsup": "^8.5.1"
67
+ },
68
+ "dependencies": {
67
69
  "elysia": "^1.4.27"
68
70
  }
69
71
  }