@datapos/datapos-shared 0.3.151 → 0.3.152

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.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +5 -1
package/README.md CHANGED
@@ -5,6 +5,15 @@
5
5
 
6
6
  A TypeScript library containing common declarations and utilities used across other Data Positioning repositories.
7
7
 
8
+ ## Requirements
9
+
10
+ Ensure your environment meets the following prerequisites before using this library:
11
+
12
+ - **Node.js** version `>=22.0.0`,
13
+ - **npm** version `>=11.0.0`,
14
+ - A Unix-like shell (for command shortcuts, e.g., `bash`, `zsh`, or Git Bash on Windows),
15
+ - Access to the [npm registry](https://www.npmjs.com/) and [GitHub](https://github.com/) for publishing and syncing.
16
+
8
17
  ## Installation
9
18
 
10
19
  Install as a production dependency:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-shared",
3
- "version": "0.3.151",
3
+ "version": "0.3.152",
4
4
  "description": "A TypeScript library containing common declarations and utilities used across other Data Positioning repositories.",
5
5
  "license": "MIT",
6
6
  "private": false,
@@ -63,5 +63,9 @@
63
63
  "_document:licenceReport": "license-report --only=prod,peer > LICENSES.json",
64
64
  "_document:licenceCheck": "license-report-check --source ./LICENSES.json --allowed 'MIT' --allowed 'n/a' --allowed 'Apache-2.0' --output=table",
65
65
  "_update:developDeps": "npm install --save-dev @datapos/datapos-development@latest"
66
+ },
67
+ "engines": {
68
+ "node": ">=22.0.0",
69
+ "npm": ">=11.0.0"
66
70
  }
67
71
  }