@datapos/datapos-shared 0.3.290 → 0.3.293
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 +2 -3
- package/package.json +6 -9
package/README.md
CHANGED
|
@@ -118,7 +118,7 @@ getComponentStatus('alpha');
|
|
|
118
118
|
|
|
119
119
|
The OWASP Dependency Check Report identifies known vulnerabilities in project dependencies. It is generated automatically on each release using the npm package `owasp-dependency-check`. We also rely on GitHub Dependabot to continuously check for vulnerabilities across all dependencies.
|
|
120
120
|
|
|
121
|
-
[View the OWASP Dependency Check Report](https://data-positioning.github.io/datapos-shared/dependency-check-
|
|
121
|
+
[View the OWASP Dependency Check Report](https://data-positioning.github.io/datapos-shared/dependency-check-report.html)
|
|
122
122
|
|
|
123
123
|
### Dependency Licenses
|
|
124
124
|
|
|
@@ -130,7 +130,6 @@ The following table lists top-level production and peer dependencies. All these
|
|
|
130
130
|
| csv-parse | MIT | 6.1.0 | 6.1.0 | 2025-07-16T18:42:21.126Z |
|
|
131
131
|
| date-fns | MIT | 4.1.0 | 4.1.0 | 2025-08-03T13:10:27.925Z |
|
|
132
132
|
| nanoid | MIT | 5.1.6 | 5.1.6 | 2025-09-22T09:45:52.899Z |
|
|
133
|
-
| zod | MIT | 4.1.13 | 4.1.13 | 2025-12-02T06:21:25.529Z |
|
|
134
133
|
<!-- DEPENDENCY_LICENSES_END -->
|
|
135
134
|
|
|
136
135
|
**Installed dependencies are kept up-to-date with latest releases.**
|
|
@@ -139,7 +138,7 @@ The following table lists top-level production and peer dependencies. All these
|
|
|
139
138
|
|
|
140
139
|
The Bundle Analysis Report provides a detailed breakdown of the bundle's composition and module sizes, helping to identify which modules contribute most to the final build. It is generated automatically on each release using the npm package `rollup-plugin-visualizer`.
|
|
141
140
|
|
|
142
|
-
[View the Bundle Analysis Report](https://data-positioning.github.io/datapos-shared/stats
|
|
141
|
+
[View the Bundle Analysis Report](https://data-positioning.github.io/datapos-shared/stats.html)
|
|
143
142
|
|
|
144
143
|
## Repository Common Management Commands
|
|
145
144
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datapos/datapos-shared",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "A library containing common
|
|
3
|
+
"version": "0.3.293",
|
|
4
|
+
"description": "A library containing common constants, types and utilities used across all Data Positioning projects.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
7
7
|
"type": "module",
|
|
@@ -29,11 +29,10 @@
|
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"csv-parse": "^6.1.0",
|
|
31
31
|
"date-fns": "^4.1.0",
|
|
32
|
-
"nanoid": "^5.1.6"
|
|
33
|
-
"zod": "^4.1.13"
|
|
32
|
+
"nanoid": "^5.1.6"
|
|
34
33
|
},
|
|
35
34
|
"devDependencies": {
|
|
36
|
-
"@datapos/datapos-development": "^0.3.
|
|
35
|
+
"@datapos/datapos-development": "^0.3.279",
|
|
37
36
|
"@types/node": "^24.10.1",
|
|
38
37
|
"@types/prismjs": "^1.26.5",
|
|
39
38
|
"@typescript-eslint/eslint-plugin": "^8.48.1",
|
|
@@ -49,9 +48,8 @@
|
|
|
49
48
|
"owasp-dependency-check": "^1.0.0",
|
|
50
49
|
"prettier": "^3.7.4",
|
|
51
50
|
"rollup-plugin-visualizer": "^6.0.5",
|
|
52
|
-
"ts-to-zod": "^5.1.0",
|
|
53
51
|
"typescript": "^5.9.3",
|
|
54
|
-
"vite": "^7.2.
|
|
52
|
+
"vite": "^7.2.7",
|
|
55
53
|
"vite-plugin-dts": "^4.5.4"
|
|
56
54
|
},
|
|
57
55
|
"scripts": {
|
|
@@ -64,8 +62,7 @@
|
|
|
64
62
|
"release": "node -e \"import('@datapos/datapos-development').then(m => m.releaseProject())\"",
|
|
65
63
|
"sync": "node -e \"import('@datapos/datapos-development').then(m => m.syncProjectWithGitHub())\"",
|
|
66
64
|
"test": "node -e \"import('@datapos/datapos-development').then(m => m.testProject())\"",
|
|
67
|
-
"update": "node -e \"import('@datapos/datapos-development').then(m => m.updateDataPosDependencies(['development']))\""
|
|
68
|
-
"___ts-to-zod": "npx ts-to-zod src/schemaTypes.ts src/schemaZOD.ts"
|
|
65
|
+
"update": "node -e \"import('@datapos/datapos-development').then(m => m.updateDataPosDependencies(['development']))\""
|
|
69
66
|
},
|
|
70
67
|
"engines": {
|
|
71
68
|
"node": ">=22.0.0",
|