remoraid 2.2.6 → 2.5.6

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.
@@ -9,7 +9,7 @@ interface EnvironmentShellProps {
9
9
  container?: ContainerProps3
10
10
  };
11
11
  }
12
- import { PropsWithChildren as PropsWithChildren13, ReactNode as ReactNode19 } from "react";
12
+ import { PropsWithChildren as PropsWithChildren17, ReactNode as ReactNode26 } from "react";
13
13
  interface ServerEnvironmentShellProps extends EnvironmentShellProps {}
14
- declare function EnvironmentShell2({ children, environment, message }: PropsWithChildren13<ServerEnvironmentShellProps>): ReactNode19;
14
+ declare function EnvironmentShell2({ children, environment, message }: PropsWithChildren17<ServerEnvironmentShellProps>): ReactNode26;
15
15
  export { ServerEnvironmentShellProps, EnvironmentShell2 as EnvironmentShell };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "remoraid",
3
- "version": "2.2.6",
3
+ "version": "2.5.6",
4
4
  "author": "Konrad Goldammer",
5
5
  "repository": {
6
6
  "type": "git",
@@ -11,6 +11,7 @@
11
11
  "devDependencies": {
12
12
  "@types/bun": "^1.1.10",
13
13
  "@types/css-modules": "^1.0.5",
14
+ "@types/lodash": "^4.17.17",
14
15
  "@types/react": "^19.1.2",
15
16
  "bun-dts": "^0.1.22",
16
17
  "next": "^15.3.1",
@@ -71,5 +72,8 @@
71
72
  "build": "bun run build.ts",
72
73
  "prepublishOnly": "bun run build"
73
74
  },
74
- "type": "module"
75
+ "type": "module",
76
+ "dependencies": {
77
+ "lodash": "^4.17.21"
78
+ }
75
79
  }