@datapos/datapos-development 0.3.252 → 0.3.254
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 +3 -1
- package/dist/datapos-development.es.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -64,9 +64,10 @@ The OWASP Dependency Check Report identifies known vulnerabilities in project de
|
|
|
64
64
|
|
|
65
65
|
### Dependency Licenses
|
|
66
66
|
|
|
67
|
-
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 published library are covered by these checks.
|
|
67
|
+
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 published 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.
|
|
68
68
|
|
|
69
69
|
<!-- DEPENDENCY_LICENSES_START -->
|
|
70
|
+
|
|
70
71
|
| Name | Type | Installed | Latest | Latest Modified |
|
|
71
72
|
| :---------------------- | :----------: | :-------: | :-----: | :----------------------- |
|
|
72
73
|
| @datapos/datapos-shared | MIT | 0.3.255 | 0.3.255 | 2025-11-29T17:16:07.774Z |
|
|
@@ -75,6 +76,7 @@ The following table lists top-level production and peer dependencies. All these
|
|
|
75
76
|
| acorn-walk | MIT | 8.3.4 | 8.3.4 | 2024-09-09T08:40:59.131Z |
|
|
76
77
|
| dotenv | BSD-2-Clause | 17.2.3 | 17.2.3 | 2025-09-29T23:22:21.769Z |
|
|
77
78
|
| zod | MIT | 4.1.13 | 4.1.13 | 2025-11-24T02:38:31.522Z |
|
|
79
|
+
|
|
78
80
|
<!-- DEPENDENCY_LICENSES_END -->
|
|
79
81
|
|
|
80
82
|
### Bundle Analysis Report
|
|
@@ -7866,7 +7866,7 @@ async function ap() {
|
|
|
7866
7866
|
"--nodePackageSkipDevDependencies",
|
|
7867
7867
|
"--nvdApiKey",
|
|
7868
7868
|
process.env.NVD_API_KEY ?? ""
|
|
7869
|
-
]), await Hh("2️⃣"), await Ee("3️⃣", "npm", ["audit"]), Fe("Dependencies audited.");
|
|
7869
|
+
]), await Hh("2️⃣"), await Ee("3️⃣ Check using 'npm outdated'", "npm", ["audit"]), Fe("Dependencies audited.");
|
|
7870
7870
|
} catch (e) {
|
|
7871
7871
|
console.error("❌ Error auditing dependencies.", e), process.exit(1);
|
|
7872
7872
|
}
|
|
@@ -7907,13 +7907,13 @@ async function Wh(e) {
|
|
|
7907
7907
|
}
|
|
7908
7908
|
async function np() {
|
|
7909
7909
|
try {
|
|
7910
|
-
Le("Check Dependencies"), await Ee("1️⃣
|
|
7910
|
+
Le("Check Dependencies"), await Ee("1️⃣ Check using 'npm outdated'", "npm", ["outdated"], !0), await Ee("2️⃣ Check using 'npm-check-updates'", "npm-check-updates", ["-i"]), Fe("Dependencies checked.");
|
|
7911
7911
|
} catch (e) {
|
|
7912
7912
|
console.error("❌ Error checking dependencies.", e), process.exit(1);
|
|
7913
7913
|
}
|
|
7914
7914
|
}
|
|
7915
7915
|
const gs = "<!-- DEPENDENCY_LICENSES_START -->", Kh = "<!-- DEPENDENCY_LICENSES_END -->";
|
|
7916
|
-
async function op(e = [], t = !
|
|
7916
|
+
async function op(e = [], t = !0) {
|
|
7917
7917
|
try {
|
|
7918
7918
|
Le("Document Dependencies");
|
|
7919
7919
|
const i = e.flatMap((s) => ["--allowed", s]);
|
package/package.json
CHANGED