@datapos/datapos-shared 0.3.50 → 0.3.52

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 +7 -7
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -28,10 +28,10 @@ let connectorConfig: ConnectorConfig;
28
28
  getComponentStatus('alpha');
29
29
  ```
30
30
 
31
- ## Repository Management Commands
31
+ ## Repository Common Management Commands
32
32
 
33
33
  The table below lists the repository management commands available in this project.
34
- For detailed implementation, see the `scripts` section in `package.json`.
34
+ For detailed implementation, see the `scripts` section in the `package.json` file.
35
35
 
36
36
  | Name | Key Code | Notes |
37
37
  | ------------------ | ---------------- | ---------------------------------------------------------------------------------------------------------- |
@@ -46,12 +46,12 @@ For detailed implementation, see the `scripts` section in `package.json`.
46
46
  | test | alt+ctrl+shift+t | NOT implemented. |
47
47
  | updateDependencies | alt+ctrl+shift+u | Install the latest version of outdated Data Positioning packages. |
48
48
 
49
- ## License
50
-
51
- [MIT](./LICENSE) © 2026 Data Positioning Pty Ltd
52
-
53
49
  ## Compliance
54
50
 
55
- This badge reflects FOSSA's assessment of this repository's open-source license compliance.
51
+ The following badge reflects FOSSA's assessment of this repository's open-source license compliance.
56
52
 
57
53
  [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fdata-positioning%2Fdatapos-shared.svg?type=large&issueType=license)](https://app.fossa.com/projects/git%2Bgithub.com%2Fdata-positioning%2Fdatapos-shared?ref=badge_large&issueType=license)
54
+
55
+ ## License
56
+
57
+ [MIT](./LICENSE) © 2026 Data Positioning Pty Ltd
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@datapos/datapos-shared",
3
3
  "license": "MIT",
4
4
  "private": false,
5
- "version": "0.3.50",
5
+ "version": "0.3.52",
6
6
  "type": "module",
7
7
  "files": [
8
8
  "dist"
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "types": "./dist/types/src/index.d.ts",
18
18
  "devDependencies": {
19
- "@datapos/datapos-development": "^0.3.18",
19
+ "@datapos/datapos-development": "^0.3.25",
20
20
  "@types/node": "^24.5.2",
21
21
  "@typescript-eslint/eslint-plugin": "^8.44.0",
22
22
  "@typescript-eslint/parser": "^8.44.0",
@@ -28,6 +28,7 @@
28
28
  "license-report-check": "^0.1.2",
29
29
  "npm-check-updates": "^18.3.0",
30
30
  "prettier": "^3.6.2",
31
+ "retire": "^5.3.0",
31
32
  "typescript": "^5.9.2",
32
33
  "vite": "^7.1.6",
33
34
  "vite-plugin-dts": "^4.5.4"
@@ -36,7 +37,7 @@
36
37
  "audit": "npm audit",
37
38
  "build": "vite build",
38
39
  "bumpVersion": "node -e \"require('@datapos/datapos-development').bumpVersion()\"",
39
- "check": "npm outdated; npm-check-updates -i",
40
+ "check": "npm outdated; npm-check-updates -i && retire",
40
41
  "document": "license-report --only=prod,peer > LICENSES.json && license-report-check --source ./LICENSES.json --allowed 'MIT' --allowed 'n/a' --allowed 'Apache-2.0' --output=table",
41
42
  "format": "prettier --write *.ts",
42
43
  "lint": "eslint",