@soulbatical/tetra-core 0.11.0 → 0.11.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 CHANGED
@@ -5,7 +5,9 @@ The foundation framework for Tetra platform projects (Soulbatical BV) — config
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install file:../vendor/tetra/soulbatical-tetra-core-0.11.0.tgz
8
+ nvm install 20.20.2
9
+ nvm use 20.20.2
10
+ npm install file:../vendor/tetra/soulbatical-tetra-core-0.11.1.tgz
9
11
  ```
10
12
 
11
13
  For deployable consumers, pack private artifacts in the Tetra repo with:
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * Usage in main.tsx:
5
5
  * ```
6
- * import { initSentryFrontend } from '@soulbatical/tetra-core/frontend';
6
+ * import { initSentryFrontend } from '@soulbatical/tetra-ui';
7
7
  * initSentryFrontend({ projectName: 'myapp-frontend' });
8
8
  * ```
9
9
  */
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * Usage in main.tsx:
5
5
  * ```
6
- * import { initSentryFrontend } from '@soulbatical/tetra-core/frontend';
6
+ * import { initSentryFrontend } from '@soulbatical/tetra-ui';
7
7
  * initSentryFrontend({ projectName: 'myapp-frontend' });
8
8
  * ```
9
9
  */
@@ -6,7 +6,7 @@
6
6
  *
7
7
  * Usage:
8
8
  * ```tsx
9
- * import { StorageDropzone } from '@soulbatical/tetra-core/frontend';
9
+ * import { StorageDropzone } from '@soulbatical/tetra-ui';
10
10
  *
11
11
  * <StorageDropzone
12
12
  * apiBaseUrl={process.env.NEXT_PUBLIC_API_URL}
@@ -7,7 +7,7 @@ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-run
7
7
  *
8
8
  * Usage:
9
9
  * ```tsx
10
- * import { StorageDropzone } from '@soulbatical/tetra-core/frontend';
10
+ * import { StorageDropzone } from '@soulbatical/tetra-ui';
11
11
  *
12
12
  * <StorageDropzone
13
13
  * apiBaseUrl={process.env.NEXT_PUBLIC_API_URL}
@@ -9,7 +9,7 @@
9
9
  *
10
10
  * Usage:
11
11
  * ```typescript
12
- * import { configureStorageUrls } from '@soulbatical/tetra-core/frontend';
12
+ * import { configureStorageUrls } from '@soulbatical/tetra-ui';
13
13
  *
14
14
  * const storage = configureStorageUrls('https://api.myapp.com');
15
15
  *
@@ -9,7 +9,7 @@
9
9
  *
10
10
  * Usage:
11
11
  * ```typescript
12
- * import { configureStorageUrls } from '@soulbatical/tetra-core/frontend';
12
+ * import { configureStorageUrls } from '@soulbatical/tetra-ui';
13
13
  *
14
14
  * const storage = configureStorageUrls('https://api.myapp.com');
15
15
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soulbatical/tetra-core",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "private": false,
5
5
  "description": "The foundation framework for Tetra platform projects (Soulbatical BV) — config-driven Express + Supabase + TypeScript",
6
6
  "type": "module",
@@ -46,6 +46,9 @@
46
46
  "test:watch": "vitest",
47
47
  "enforce:api": "./scripts/enforce-api-standards.sh"
48
48
  },
49
+ "engines": {
50
+ "node": ">=20"
51
+ },
49
52
  "dependencies": {
50
53
  "express-rate-limit": "^8.3.2",
51
54
  "helmet": "^8.1.0",