|
1 | 1 | @{ |
2 | 2 | RootModule = 'JSON-LD.psm1' |
3 | | - ModuleVersion = '0.1' |
| 3 | + ModuleVersion = '0.1.1' |
4 | 4 | GUID = '4e65477c-012c-4077-87c7-3e07964636ce' |
5 | 5 | Author = 'James Brundage' |
6 | 6 | CompanyName = 'Start-Automating' |
7 | | - Copyright = '(c) 2025 Start-Automating.' |
| 7 | + Copyright = '(c) 2025-2026 Start-Automating.' |
8 | 8 | Description = 'Get JSON Linked Data with PowerShell' |
9 | 9 | FunctionsToExport = 'Get-JsonLD' |
10 | 10 | AliasesToExport = 'jsonLD', 'json-ld' |
| 11 | + TypesToProcess = 'JSON-LD.types.ps1xml' |
11 | 12 | PrivateData = @{ |
12 | 13 | PSData = @{ |
13 | 14 | # Tags applied to this module. These help with module discovery in online galleries. |
14 | | - Tags = @('json-ld','SEO','Web','PowerShellWeb') |
| 15 | + Tags = @('json-ld','SEO','Web','PoshWeb','LinkedData','schema.org') |
15 | 16 | # A URL to the license for this module. |
16 | | - ProjectURI = 'https://github.com/PowerShellWeb/JSON-LD' |
17 | | - LicenseURI = 'https://github.com/PowerShellWeb/JSON-LD/blob/main/LICENSE' |
| 17 | + ProjectURI = 'https://github.com/PoshWeb/JSON-LD' |
| 18 | + LicenseURI = 'https://github.com/PoshWeb/JSON-LD/blob/main/LICENSE' |
18 | 19 | ReleaseNotes = @' |
| 20 | +--- |
19 | 21 |
|
20 | | -> Like It? [Star It](https://github.com/PowerShellWeb/JSON-LD) |
21 | | -> Love It? [Support It](https://github.com/sponsors/StartAutomating) |
| 22 | +## JSON-LD 0.1.1 |
22 | 23 |
|
23 | | -## JSON-LD 0.1 |
| 24 | +* Updating Examples (#13) |
| 25 | +* Simplfiying module scaffolding (#15) |
| 26 | +* Building types with EZOut (#5) |
| 27 | +* Supporting file input (#23) |
| 28 | +* `Get-JSONLD -as` |
| 29 | + * `Get-JSONLD -as json` (#16) |
| 30 | + * `Get-JSONLD -as html` (#17) |
| 31 | + * `Get-JSONLD -as script` (#18) |
| 32 | + * `Get-JSONLD -as xml` (#19) |
| 33 | +* Adding conversion to JsonSchema (#21) |
| 34 | +* Adding conversion to At Protocol Lexicons (#22) |
24 | 35 |
|
25 | | -Caching JSON-LD requests |
| 36 | +--- |
26 | 37 |
|
27 | | -Get Linked Data from any page |
| 38 | +Please: |
28 | 39 |
|
29 | | -## JSON-LD 0.0.1 |
| 40 | +* [Like, Share, and Subscribe](https://github.com/PowerShellWeb/JSON-LD) |
| 41 | +* [Support Us](https://github.com/sponsors/StartAutomating) |
30 | 42 |
|
31 | | -* Initial Release of JSON-LD Module (#1) |
32 | | - * `Get-JsonLD` gets linked data (#2) |
33 | | - * `Get-JsonLD` is aliased to `jsonLD` and `json-ld` |
| 43 | +Additional History in [CHANGELOG](https://github.com/PoshWeb/JSON-LD/blob/main/CHANGELOG.md) |
34 | 44 | '@ |
35 | 45 | } |
36 | 46 | } |
|
0 commit comments