@datapos/datapos-shared 0.3.290 → 0.3.295
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 +4 -5
- package/package.json +7 -9
package/README.md
CHANGED
|
@@ -116,13 +116,13 @@ getComponentStatus('alpha');
|
|
|
116
116
|
|
|
117
117
|
### Dependency Check Report
|
|
118
118
|
|
|
119
|
-
The OWASP Dependency Check Report identifies known vulnerabilities in project dependencies. It is generated automatically on each release using the npm package
|
|
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](https://dependency-check.github.io/DependencyCheck/index.html). 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
|
|
|
125
|
-
The following table lists top-level production and peer dependencies. All these dependencies (including transitive ones) have been recursively verified to use Apache-2.0, CC0-1.0, or MIT—commercially friendly licenses with minimal restrictions. Developers cloning this repository should independently verify dev and optional dependencies; users of the uploaded library are covered by these checks.
|
|
125
|
+
The following table lists top-level production and peer dependencies. All these dependencies (including transitive ones) have been recursively verified to use Apache-2.0, BSD-2-Clause, CC0-1.0, or MIT—commercially friendly licenses with minimal restrictions. Developers cloning this repository should independently verify dev and optional dependencies; users of the uploaded library are covered by these checks. We do not include unlicensed dependencies. Used to support development activity and not released as part of the production release. Check if you clone. We use the `npm` packages [license-report](https://www.npmjs.com/package/license-report), [license-report-check](https://www.npmjs.com/package/license-report-check) and [license-report-recursive](https://www.npmjs.com/package/license-report-recursive) to identify dependency licenses.
|
|
126
126
|
|
|
127
127
|
<!-- DEPENDENCY_LICENSES_START -->
|
|
128
128
|
| Name | Type | Installed | Latest | Latest Modified |
|
|
@@ -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.295",
|
|
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.291",
|
|
37
36
|
"@types/node": "^24.10.1",
|
|
38
37
|
"@types/prismjs": "^1.26.5",
|
|
39
38
|
"@typescript-eslint/eslint-plugin": "^8.48.1",
|
|
@@ -41,6 +40,7 @@
|
|
|
41
40
|
"eslint": "^9.39.1",
|
|
42
41
|
"eslint-plugin-import": "^2.32.0",
|
|
43
42
|
"jiti": "^2.6.1",
|
|
43
|
+
"license-downloader": "^1.3.3",
|
|
44
44
|
"license-report": "^6.8.1",
|
|
45
45
|
"license-report-check": "^0.1.2",
|
|
46
46
|
"license-report-recursive": "^6.8.2",
|
|
@@ -49,9 +49,8 @@
|
|
|
49
49
|
"owasp-dependency-check": "^1.0.0",
|
|
50
50
|
"prettier": "^3.7.4",
|
|
51
51
|
"rollup-plugin-visualizer": "^6.0.5",
|
|
52
|
-
"ts-to-zod": "^5.1.0",
|
|
53
52
|
"typescript": "^5.9.3",
|
|
54
|
-
"vite": "^7.2.
|
|
53
|
+
"vite": "^7.2.7",
|
|
55
54
|
"vite-plugin-dts": "^4.5.4"
|
|
56
55
|
},
|
|
57
56
|
"scripts": {
|
|
@@ -64,8 +63,7 @@
|
|
|
64
63
|
"release": "node -e \"import('@datapos/datapos-development').then(m => m.releaseProject())\"",
|
|
65
64
|
"sync": "node -e \"import('@datapos/datapos-development').then(m => m.syncProjectWithGitHub())\"",
|
|
66
65
|
"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"
|
|
66
|
+
"update": "node -e \"import('@datapos/datapos-development').then(m => m.updateDataPosDependencies(['development']))\""
|
|
69
67
|
},
|
|
70
68
|
"engines": {
|
|
71
69
|
"node": ">=22.0.0",
|