@datapos/datapos-shared 0.3.355 → 0.3.356

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 +1 -1
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -20,7 +20,7 @@ npm install @datapos/datapos-shared
20
20
 
21
21
  This package provides constants, errors, types/interfaces and utilities used by Data Positioning modules.
22
22
 
23
- [Documentation](https://data-positioning.github.io/datapos-shared/docs/index.html)
23
+ [Documentation](https://data-positioning.github.io/datapos-shared/docs/typedoc/index.html)
24
24
 
25
25
  ### Modules
26
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-shared",
3
- "version": "0.3.355",
3
+ "version": "0.3.356",
4
4
  "description": "A library containing common constants, types and utilities used across all Data Positioning projects.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",
@@ -70,6 +70,7 @@
70
70
  "sonda": "^0.10.1",
71
71
  "type-fest": "^5.3.1",
72
72
  "typedoc": "^0.28.15",
73
+ "typedoc-github-theme": "^0.3.1",
73
74
  "typedoc-material-theme": "^1.4.1",
74
75
  "typescript": "^5.9.3",
75
76
  "valibot": "^1.2.0",
@@ -87,7 +88,10 @@
87
88
  "sync": "node -e \"import('@datapos/datapos-development').then(m => m.syncProjectWithGitHub())\"",
88
89
  "test": "node -e \"import('@datapos/datapos-development').then(m => m.testProject())\"",
89
90
  "update": "node -e \"import('@datapos/datapos-development').then(m => m.updateDataPosDependencies(['development', 'eslint']))\"",
90
- "_readmeToPDF": "md-to-pdf README.md"
91
+ "_readmeToPDF": "md-to-pdf README.md",
92
+ "_td": "npx typedoc --options docs/typedoc.json",
93
+ "_td:github": "npx typedoc --options docs/typedoc.json --plugin typedoc-github-theme",
94
+ "_td:material": "npx typedoc --options docs/typedoc.json --plugin typedoc-material-theme --themeColor '#cb9820'"
91
95
  },
92
96
  "engines": {
93
97
  "node": ">=22.0.0",