Skip to content

Commit 35ee035

Browse files
author
James Brundage
committed
feat: JSON-LD manifest ( Fixes #1 )
1 parent 3798f98 commit 35ee035

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

JSON-LD.psd1

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
@{
2+
RootModule = 'JSON-LD.psm1'
3+
ModuleVersion = '0.0.1'
4+
GUID = '4e65477c-012c-4077-87c7-3e07964636ce'
5+
Author = 'JamesBrundage'
6+
CompanyName = 'Start-Automating'
7+
Copyright = '(c) 2025 Start-Automating.'
8+
Description = 'Get JSON Linked Data with PowerShell'
9+
FunctionsToExport = 'Get-JsonLD'
10+
AliasesToExport = 'jsonLD', 'json-ld'
11+
PrivateData = @{
12+
PSData = @{
13+
# Tags applied to this module. These help with module discovery in online galleries.
14+
Tags = @('json-ld','SEO','Web','PowerShellWeb')
15+
# 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'
18+
ReleaseNotes = @'
19+
20+
> Like It? [Star It](https://github.com/PowerShellWeb/JSON-LD)
21+
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
22+
23+
Get Linked Data from any page
24+
25+
## JSON-LD 0.0.1
26+
27+
* Initial Release of JSON-LD Module (#1)
28+
* `Get-JsonLD` gets linked data (#2)
29+
* `Get-JsonLD` is aliased to `jsonLD` and `json-ld`
30+
'@
31+
}
32+
}
33+
34+
}
35+

0 commit comments

Comments
 (0)