svelte-meta-tags 2.6.4 → 2.7.0
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 +136 -74
- package/{JsonLd.svelte → dist/JsonLd.svelte} +8 -4
- package/{types.d.ts → dist/types.d.ts} +1 -1
- package/package.json +65 -25
- package/CHANGELOG.md +0 -181
- /package/{JsonLd.svelte.d.ts → dist/JsonLd.svelte.d.ts} +0 -0
- /package/{MetaTags.svelte → dist/MetaTags.svelte} +0 -0
- /package/{MetaTags.svelte.d.ts → dist/MetaTags.svelte.d.ts} +0 -0
- /package/{index.d.ts → dist/index.d.ts} +0 -0
- /package/{index.js → dist/index.js} +0 -0
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://www.npmjs.com/package/svelte-meta-tags)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
|
|
8
|
-
Svelte Meta Tags
|
|
8
|
+
Svelte Meta Tags provides components designed to help you manage SEO for Svelte projects.
|
|
9
9
|
|
|
10
10
|
[Demo](https://svelte.dev/repl/ffd783c9b8e54d97b6b7cac6eadace42)
|
|
11
11
|
|
|
@@ -124,54 +124,54 @@ pnpm add -D svelte-meta-tags
|
|
|
124
124
|
|
|
125
125
|
### MetaTags Properties
|
|
126
126
|
|
|
127
|
-
| Property | Type | Description
|
|
128
|
-
| ---------------------------------- | ----------------------- |
|
|
129
|
-
| `title` | string | Sets the
|
|
130
|
-
| `titleTemplate` | string | Allows you to set default title template that will be added to your title [More Info](#title-template)
|
|
131
|
-
| `noindex` | boolean (default false) |
|
|
132
|
-
| `nofollow` | boolean (default false) |
|
|
133
|
-
| `additionRobotsProps` | Object | Set the
|
|
134
|
-
| `description` | string | Sets the
|
|
135
|
-
| `canonical` | string |
|
|
136
|
-
| `mobileAlternate.media` | string | Set
|
|
137
|
-
| `mobileAlternate.href` | string | Set the mobile page
|
|
138
|
-
| `languageAlternates` | array | Set the language of the alternate urls. Expects array of objects with the shape: `{ hrefLang: string, href: string }`
|
|
139
|
-
| `additionalMetaTags` | array | Allows you to add a meta tag that is not documented here
|
|
140
|
-
| `additionalLinkTags` | array | Allows you to add a link tag that is not documented here
|
|
141
|
-
| `twitter.cardType` | string | The card type, which will be one of `summary`, `summary_large_image`, `app`, or `player`
|
|
142
|
-
| `twitter.site` | string | @username for the website used in the card footer
|
|
143
|
-
| `twitter.handle` | string | @username for the
|
|
144
|
-
| `twitter.title` | string | The concise title for the related content
|
|
145
|
-
| `twitter.description` | string | The description that concisely summarizes the content
|
|
146
|
-
| `twitter.image` | string | The URL to a unique image
|
|
147
|
-
| `twitter.imageAlt` | string | The
|
|
148
|
-
| `facebook.appId` | string |
|
|
149
|
-
| `openGraph.url` | string | The canonical URL of your object
|
|
150
|
-
| `openGraph.type` | string | The type of your object. Depending on the type you specify, other properties may also be required [More Info](#open-graph)
|
|
151
|
-
| `openGraph.title` | string | The open graph title, this can be different
|
|
152
|
-
| `openGraph.description` | string | The open graph description,
|
|
153
|
-
| `openGraph.images` | array | An array of images to
|
|
154
|
-
| `openGraph.videos` | array | An array of videos (object)
|
|
155
|
-
| `openGraph.locale` | string | The locale the open graph tags are
|
|
156
|
-
| `openGraph.site_name` | string | If your
|
|
157
|
-
| `openGraph.profile.firstName` | string | Person's first name
|
|
158
|
-
| `openGraph.profile.lastName` | string | Person's last name
|
|
159
|
-
| `openGraph.profile.username` | string | Person's username
|
|
160
|
-
| `openGraph.profile.gender` | string | Person's gender
|
|
161
|
-
| `openGraph.book.authors` | string[] |
|
|
162
|
-
| `openGraph.book.isbn` | string | The [ISBN](https://en.wikipedia.org/wiki/International_Standard_Book_Number)
|
|
163
|
-
| `openGraph.book.releaseDate` | datetime | The date the book was released
|
|
164
|
-
| `openGraph.book.tags` | string[] | Tag words
|
|
165
|
-
| `openGraph.article.publishedTime` | datetime | When the article was first published
|
|
166
|
-
| `openGraph.article.modifiedTime` | datetime | When the
|
|
167
|
-
| `openGraph.article.expirationTime` | datetime | When the article is out of date after
|
|
168
|
-
| `openGraph.article.authors` | string[] |
|
|
169
|
-
| `openGraph.article.section` | string | A high-level section name. E.g. Technology
|
|
170
|
-
| `openGraph.article.tags` | string[] | Tag words associated with this article
|
|
127
|
+
| Property | Type | Description |
|
|
128
|
+
| ---------------------------------- | ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
129
|
+
| `title` | string | Sets the meta title of the page |
|
|
130
|
+
| `titleTemplate` | string | Allows you to set the default title template that will be added to your title [More Info](#title-template) |
|
|
131
|
+
| `noindex` | boolean (default false) | Specifies whether the page should be indexed or not |
|
|
132
|
+
| `nofollow` | boolean (default false) | Specifies whether or not to follow the page |
|
|
133
|
+
| `additionRobotsProps` | Object | Set the additional meta information for the `X-Robots-Tag` [More Info](#robotsprops) |
|
|
134
|
+
| `description` | string | Sets the meta description of the page |
|
|
135
|
+
| `canonical` | string | Make the page canonical URL |
|
|
136
|
+
| `mobileAlternate.media` | string | Set the screen size from which the mobile site will be served |
|
|
137
|
+
| `mobileAlternate.href` | string | Set the alternate URL for the mobile page |
|
|
138
|
+
| `languageAlternates` | array | Set the language of the alternate urls. Expects array of objects with the shape: `{ hrefLang: string, href: string }` |
|
|
139
|
+
| `additionalMetaTags` | array | Allows you to add a meta tag that is not documented here [More Info](#additional-meta-tags) |
|
|
140
|
+
| `additionalLinkTags` | array | Allows you to add a link tag that is not documented here [More Info](#additional-link-tags) |
|
|
141
|
+
| `twitter.cardType` | string | The card type, which will be one of `summary`, `summary_large_image`, `app`, or `player` |
|
|
142
|
+
| `twitter.site` | string | @username for the website used in the card footer |
|
|
143
|
+
| `twitter.handle` | string | @username for the creator of the content (output as `twitter:creator`) |
|
|
144
|
+
| `twitter.title` | string | The concise title for the related content |
|
|
145
|
+
| `twitter.description` | string | The description that concisely summarizes the content in a manner suitable for presentation within a Tweet. You should not reuse the title as the description or use this field to describe the general services provided by the website |
|
|
146
|
+
| `twitter.image` | string | The URL to a unique image that represents the content of the page. You should not use a generic image such as your site logo, author photo, or other image that spans multiple pages. Images for this card support a 1:1 aspect ratio with a minimum size of 144x144 pixels or a maximum size of 4096x4096 pixels. Images must be less than 5MB in size. The image will be cropped to a square on all platforms. JPG, PNG, WEBP, and GIF formats are supported. Only the first frame of an animated GIF is used. SVG is not supported |
|
|
147
|
+
| `twitter.imageAlt` | string | The textual description of the image that conveys the essence of the image to visually impaired users. Maximum 420 characters |
|
|
148
|
+
| `facebook.appId` | string | For Facebook Insights, you will need to add a Facebook app ID to your page in order to use it |
|
|
149
|
+
| `openGraph.url` | string | The canonical URL of your object, which will be used as its permanent ID in the graph |
|
|
150
|
+
| `openGraph.type` | string | The type of your object. Depending on the type you specify, other properties may also be required [More Info](#open-graph) |
|
|
151
|
+
| `openGraph.title` | string | The open graph title, this can be different from your meta title |
|
|
152
|
+
| `openGraph.description` | string | The open graph description, which may be different from your meta description |
|
|
153
|
+
| `openGraph.images` | array | An array of images to use as previews. If multiple are provided, you can choose one when sharing [See Examples](#open-graph-examples) |
|
|
154
|
+
| `openGraph.videos` | array | An array of videos (object) |
|
|
155
|
+
| `openGraph.locale` | string | The locale in which the open graph tags are highlighted |
|
|
156
|
+
| `openGraph.site_name` | string | If your item is part of a larger website, the name that should be displayed for the entire site |
|
|
157
|
+
| `openGraph.profile.firstName` | string | Person's first name |
|
|
158
|
+
| `openGraph.profile.lastName` | string | Person's last name |
|
|
159
|
+
| `openGraph.profile.username` | string | Person's username |
|
|
160
|
+
| `openGraph.profile.gender` | string | Person's gender |
|
|
161
|
+
| `openGraph.book.authors` | string[] | Author of the article [See Examples](#open-graph-examples) |
|
|
162
|
+
| `openGraph.book.isbn` | string | The [ISBN](https://en.wikipedia.org/wiki/International_Standard_Book_Number) |
|
|
163
|
+
| `openGraph.book.releaseDate` | datetime | The date the book was released |
|
|
164
|
+
| `openGraph.book.tags` | string[] | Tag words related to this book |
|
|
165
|
+
| `openGraph.article.publishedTime` | datetime | When the article was first published [See Examples](#open-graph-examples) |
|
|
166
|
+
| `openGraph.article.modifiedTime` | datetime | When the item was last modified |
|
|
167
|
+
| `openGraph.article.expirationTime` | datetime | When the article is out of date after |
|
|
168
|
+
| `openGraph.article.authors` | string[] | Author of the article |
|
|
169
|
+
| `openGraph.article.section` | string | A high-level section name. E.g. Technology |
|
|
170
|
+
| `openGraph.article.tags` | string[] | Tag words associated with this article |
|
|
171
171
|
|
|
172
172
|
#### Title Template
|
|
173
173
|
|
|
174
|
-
|
|
174
|
+
Replace `%s` with your title string.
|
|
175
175
|
|
|
176
176
|
```
|
|
177
177
|
title = 'This is my title'
|
|
@@ -199,7 +199,7 @@ twitter={{
|
|
|
199
199
|
}}
|
|
200
200
|
```
|
|
201
201
|
|
|
202
|
-
|
|
202
|
+
See out the Twitter [documentation](https://developer.twitter.com/en/docs/twitter-for-websites/cards/overview/summary) for more information.
|
|
203
203
|
|
|
204
204
|
#### Facebook
|
|
205
205
|
|
|
@@ -209,11 +209,11 @@ facebook={{
|
|
|
209
209
|
}}
|
|
210
210
|
```
|
|
211
211
|
|
|
212
|
-
Add this to your SEO config to include the fb:app_id meta if you need to enable Facebook
|
|
212
|
+
Add this to your SEO config to include the fb:app_id meta if you need to enable Facebook Insights for your site. Information on this can be found in Facebook's [documentation](https://developers.facebook.com/docs/sharing/webmasters/).
|
|
213
213
|
|
|
214
214
|
#### robotsProps
|
|
215
215
|
|
|
216
|
-
In addition to `index, follow
|
|
216
|
+
In addition to `index, follow', the `robots' meta tag accepts more properties to archive more accurate crawling and serve better snippets to SEO bots crawling your page.
|
|
217
217
|
|
|
218
218
|
Example:
|
|
219
219
|
|
|
@@ -238,22 +238,22 @@ Example:
|
|
|
238
238
|
|
|
239
239
|
**Available properties**
|
|
240
240
|
|
|
241
|
-
| Property | Type | Description
|
|
242
|
-
| ------------------ | ------------------------- |
|
|
243
|
-
| `noarchive` | boolean | Do not
|
|
244
|
-
| `nosnippet` | boolean | Do not show a text snippet or video preview in the search results for this page
|
|
245
|
-
| `maxSnippet` | number | Use a maximum of [number] characters as
|
|
246
|
-
| `maxImagePreview` | 'none','standard','large' | Set the maximum size of an image preview for this page in a search
|
|
247
|
-
| `maxVideoPreview` | number | Use a maximum of [number] seconds as a video snippet for videos on this page in search results
|
|
248
|
-
| `notranslate` | boolean | Do not offer translation of this page in search results
|
|
249
|
-
| `noimageindex` | boolean | Do not index images on this page
|
|
250
|
-
| `unavailableAfter` | string | Do not show this page in search results after the specified date/time. The date/time must be
|
|
241
|
+
| Property | Type | Description |
|
|
242
|
+
| ------------------ | ------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
243
|
+
| `noarchive` | boolean | Do not display a [cached link](https://support.google.com/websearch/answer/1687222) in search results |
|
|
244
|
+
| `nosnippet` | boolean | Do not show a text snippet or video preview in the search results for this page |
|
|
245
|
+
| `maxSnippet` | number | Use a maximum of [number] characters as the text snippet for this search result [Read more](https://developers.google.com/search/reference/robots_meta_tag?hl=en-GB#directives) |
|
|
246
|
+
| `maxImagePreview` | 'none','standard','large' | Set the maximum size of an image preview for this page in a search result |
|
|
247
|
+
| `maxVideoPreview` | number | Use a maximum of [number] seconds as a video snippet for videos on this page in search results [Read more](https://developers.google.com/search/reference/robots_meta_tag?hl=en-GB#directives) |
|
|
248
|
+
| `notranslate` | boolean | Do not offer translation of this page in search results |
|
|
249
|
+
| `noimageindex` | boolean | Do not index images on this page |
|
|
250
|
+
| `unavailableAfter` | string | Do not show this page in search results after the specified date/time. The date/time must be in a widely accepted format, including but not limited to RFC 822, RFC 850, and ISO 8601 |
|
|
251
251
|
|
|
252
|
-
For more
|
|
252
|
+
For more information on the `X-Robots-Tag` visit [Google Search Central - Control Crawling and Indexing](https://developers.google.com/search/reference/robots_meta_tag?hl=en-GB#directives)
|
|
253
253
|
|
|
254
254
|
#### Alternate
|
|
255
255
|
|
|
256
|
-
This link
|
|
256
|
+
This link relationship is used to indicate a relationship between a desktop and mobile website to search engines.
|
|
257
257
|
|
|
258
258
|
Example:
|
|
259
259
|
|
|
@@ -275,9 +275,9 @@ languageAlternates={[
|
|
|
275
275
|
|
|
276
276
|
#### Additional Meta Tags
|
|
277
277
|
|
|
278
|
-
This allows you to add any other meta tags that are not
|
|
278
|
+
This allows you to add any other meta tags that are not required by the `config`.
|
|
279
279
|
|
|
280
|
-
`content` is required. Then either `name`, `property` or `httpEquiv`. (
|
|
280
|
+
`content` is required. Then either `name`, `property` or `httpEquiv`. (only one of each)
|
|
281
281
|
|
|
282
282
|
Example:
|
|
283
283
|
|
|
@@ -300,7 +300,7 @@ additionalMetaTags={[
|
|
|
300
300
|
|
|
301
301
|
Invalid Examples:
|
|
302
302
|
|
|
303
|
-
These are invalid
|
|
303
|
+
These are invalid because they contain more than one of `name`, `property`, and `httpEquiv` in the same entry.
|
|
304
304
|
|
|
305
305
|
```js
|
|
306
306
|
additionalMetaTags={[
|
|
@@ -379,7 +379,7 @@ it will result in this being rendered:
|
|
|
379
379
|
|
|
380
380
|
## Open Graph
|
|
381
381
|
|
|
382
|
-
|
|
382
|
+
The full specification can be found at <http://ogp.me/>.
|
|
383
383
|
|
|
384
384
|
Svelte Meta Tags currently supports:
|
|
385
385
|
|
|
@@ -570,22 +570,22 @@ Full info on [http://ogp.me/](http://ogp.me/#type_video)
|
|
|
570
570
|
|
|
571
571
|
## JSON-LD
|
|
572
572
|
|
|
573
|
-
JSON-LD
|
|
573
|
+
JSON-LD allows for more customized and richer display, such as in search results.
|
|
574
574
|
|
|
575
|
-
To discover all the different content types JSON-LD offers
|
|
575
|
+
To discover all the different content types that JSON-LD offers, go to: https://developers.google.com/search/docs/guides/search-gallery
|
|
576
576
|
|
|
577
|
-
|
|
577
|
+
Tips: If you want to handle multiple JSON-LDs on one page, pass an array to the `schema`.
|
|
578
578
|
|
|
579
579
|
### Using `schema-dts`
|
|
580
580
|
|
|
581
|
-
This plugin uses [schema-dts](https://github.com/google/schema-dts), so it
|
|
581
|
+
This plugin uses [schema-dts](https://github.com/google/schema-dts), so it provides other types than the examples below.
|
|
582
582
|
|
|
583
583
|
### JSON-LD Properties
|
|
584
584
|
|
|
585
|
-
| Property | Type | Description
|
|
586
|
-
| -------- | --------------------- |
|
|
587
|
-
| `output` | string (default head) |
|
|
588
|
-
| `schema` | Object | Data in `ld+json` format
|
|
585
|
+
| Property | Type | Description |
|
|
586
|
+
| -------- | --------------------- | -------------------------------------------------------------------------------------------------------- |
|
|
587
|
+
| `output` | string (default head) | Specifies whether to output json-ld in `<head>` or `<body>`. Possible values are either `head` or `body` |
|
|
588
|
+
| `schema` | Object | Data in `ld+json` format [See Examples](#json-ld-examples) |
|
|
589
589
|
|
|
590
590
|
### JSON-LD Examples
|
|
591
591
|
|
|
@@ -784,6 +784,68 @@ This plugin uses [schema-dts](https://github.com/google/schema-dts), so it also
|
|
|
784
784
|
/>
|
|
785
785
|
```
|
|
786
786
|
|
|
787
|
+
### JSON-LD Multiple Examples
|
|
788
|
+
|
|
789
|
+
```svelte
|
|
790
|
+
<script>
|
|
791
|
+
import { JsonLd } from 'svelte-meta-tags';
|
|
792
|
+
</script>
|
|
793
|
+
|
|
794
|
+
<JsonLd
|
|
795
|
+
schema={[
|
|
796
|
+
{
|
|
797
|
+
'@type': 'BreadcrumbList',
|
|
798
|
+
itemListElement: [
|
|
799
|
+
{
|
|
800
|
+
'@type': 'ListItem',
|
|
801
|
+
position: 1,
|
|
802
|
+
name: 'Books',
|
|
803
|
+
item: 'https://example.com/books'
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
'@type': 'ListItem',
|
|
807
|
+
position: 2,
|
|
808
|
+
name: 'Science Fiction',
|
|
809
|
+
item: 'https://example.com/books/sciencefiction'
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
'@type': 'ListItem',
|
|
813
|
+
position: 3,
|
|
814
|
+
name: 'Award Winners'
|
|
815
|
+
}
|
|
816
|
+
]
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
'@type': 'NewsArticle',
|
|
820
|
+
mainEntityOfPage: {
|
|
821
|
+
'@type': 'WebPage',
|
|
822
|
+
'@id': 'https://google.com/article'
|
|
823
|
+
},
|
|
824
|
+
headline: 'Article headline',
|
|
825
|
+
image: [
|
|
826
|
+
'https://example.com/photos/1x1/photo.jpg',
|
|
827
|
+
'https://example.com/photos/4x3/photo.jpg',
|
|
828
|
+
'https://example.com/photos/16x9/photo.jpg'
|
|
829
|
+
],
|
|
830
|
+
datePublished: '2015-02-05T08:00:00+08:00',
|
|
831
|
+
dateModified: '2015-02-05T09:20:00+08:00',
|
|
832
|
+
author: {
|
|
833
|
+
'@type': 'Person',
|
|
834
|
+
name: 'John Doe'
|
|
835
|
+
},
|
|
836
|
+
publisher: {
|
|
837
|
+
'@type': 'Organization',
|
|
838
|
+
name: 'Google',
|
|
839
|
+
logo: {
|
|
840
|
+
'@type': 'ImageObject',
|
|
841
|
+
url: 'https://google.com/logo.jpg'
|
|
842
|
+
}
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
]}
|
|
846
|
+
/>
|
|
847
|
+
```
|
|
848
|
+
|
|
787
849
|
## Types
|
|
788
850
|
|
|
789
851
|
The following types can be imported from `svelte-meta-tags`
|
|
@@ -814,7 +876,7 @@ interface MetaTagsProps {
|
|
|
814
876
|
```ts
|
|
815
877
|
interface JsonLdProps {
|
|
816
878
|
output?: 'head' | 'body';
|
|
817
|
-
schema?: Thing | WithContext<Thing
|
|
879
|
+
schema?: Thing | WithContext<Thing> | Thing[] | WithContext<Thing>[];
|
|
818
880
|
}
|
|
819
881
|
```
|
|
820
882
|
|
|
@@ -3,10 +3,14 @@
|
|
|
3
3
|
export let schema = {};
|
|
4
4
|
|
|
5
5
|
$: isValid = schema && typeof schema === 'object';
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
...
|
|
9
|
-
|
|
6
|
+
|
|
7
|
+
function createSchema(schema) {
|
|
8
|
+
const addContext = (context) => ({ '@context': 'https://schema.org', ...context });
|
|
9
|
+
|
|
10
|
+
return Array.isArray(schema) ? schema.map((context) => addContext(context)) : addContext(schema);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
$: json = `${'<scri' + 'pt type="application/ld+json">'}${JSON.stringify(createSchema(schema))}${'</scri' + 'pt>'}`;
|
|
10
14
|
</script>
|
|
11
15
|
|
|
12
16
|
<svelte:head>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelte-meta-tags",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"description": "Svelte Meta Tags is a plugin that makes managing your SEO easier in Svelte projects.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -17,38 +17,78 @@
|
|
|
17
17
|
"type": "git",
|
|
18
18
|
"url": "https://github.com/oekazuma/svelte-meta-tags"
|
|
19
19
|
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"dev": "vite dev",
|
|
22
|
+
"build": "vite build",
|
|
23
|
+
"preview": "vite preview",
|
|
24
|
+
"package": "svelte-kit sync && svelte-package && publint",
|
|
25
|
+
"prepare": "husky install",
|
|
26
|
+
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
27
|
+
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
28
|
+
"lint": "prettier --plugin-search-dir . --check . --cache && eslint .",
|
|
29
|
+
"format": "prettier --plugin-search-dir . --write . --cache",
|
|
30
|
+
"test": "playwright test"
|
|
31
|
+
},
|
|
20
32
|
"dependencies": {
|
|
21
|
-
"schema-dts": "^1.1.
|
|
33
|
+
"schema-dts": "^1.1.2"
|
|
22
34
|
},
|
|
23
35
|
"devDependencies": {
|
|
24
|
-
"@playwright/test": "^1.
|
|
25
|
-
"@sveltejs/adapter-auto": "^
|
|
26
|
-
"@sveltejs/kit": "^1.
|
|
27
|
-
"@sveltejs/package": "^
|
|
28
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
29
|
-
"@typescript-eslint/parser": "^5.
|
|
30
|
-
"eslint": "^8.
|
|
31
|
-
"eslint-config-prettier": "^8.
|
|
36
|
+
"@playwright/test": "^1.31.2",
|
|
37
|
+
"@sveltejs/adapter-auto": "^2.0.0",
|
|
38
|
+
"@sveltejs/kit": "^1.11.0",
|
|
39
|
+
"@sveltejs/package": "^2.0.2",
|
|
40
|
+
"@typescript-eslint/eslint-plugin": "^5.54.1",
|
|
41
|
+
"@typescript-eslint/parser": "^5.54.1",
|
|
42
|
+
"eslint": "^8.35.0",
|
|
43
|
+
"eslint-config-prettier": "^8.7.0",
|
|
32
44
|
"eslint-plugin-svelte3": "^4.0.0",
|
|
33
|
-
"husky": "^8.0.
|
|
34
|
-
"lint-staged": "^13.
|
|
35
|
-
"prettier": "^2.
|
|
36
|
-
"prettier-plugin-svelte": "^2.
|
|
37
|
-
"
|
|
38
|
-
"svelte
|
|
39
|
-
"svelte-
|
|
40
|
-
"tslib": "^2.
|
|
41
|
-
"typescript": "^4.9.
|
|
42
|
-
"vite": "^
|
|
45
|
+
"husky": "^8.0.3",
|
|
46
|
+
"lint-staged": "^13.1.2",
|
|
47
|
+
"prettier": "^2.8.4",
|
|
48
|
+
"prettier-plugin-svelte": "^2.9.0",
|
|
49
|
+
"publint": "^0.1.10",
|
|
50
|
+
"svelte": "^3.56.0",
|
|
51
|
+
"svelte-check": "^3.1.0",
|
|
52
|
+
"tslib": "^2.5.0",
|
|
53
|
+
"typescript": "^4.9.5",
|
|
54
|
+
"vite": "^4.1.4"
|
|
43
55
|
},
|
|
44
56
|
"peerDependencies": {
|
|
45
57
|
"svelte": "^3.44.0"
|
|
46
58
|
},
|
|
47
59
|
"exports": {
|
|
48
60
|
"./package.json": "./package.json",
|
|
49
|
-
"./JsonLd.svelte":
|
|
50
|
-
|
|
51
|
-
|
|
61
|
+
"./JsonLd.svelte": {
|
|
62
|
+
"types": "./dist/JsonLd.svelte.d.ts",
|
|
63
|
+
"svelte": "./dist/JsonLd.svelte",
|
|
64
|
+
"default": "./dist/JsonLd.svelte"
|
|
65
|
+
},
|
|
66
|
+
"./MetaTags.svelte": {
|
|
67
|
+
"types": "./dist/MetaTags.svelte.d.ts",
|
|
68
|
+
"svelte": "./dist/MetaTags.svelte",
|
|
69
|
+
"default": "./dist/MetaTags.svelte"
|
|
70
|
+
},
|
|
71
|
+
".": {
|
|
72
|
+
"types": "./dist/index.d.ts",
|
|
73
|
+
"svelte": "./dist/index.js",
|
|
74
|
+
"default": "./dist/index.js"
|
|
75
|
+
}
|
|
52
76
|
},
|
|
53
|
-
"
|
|
54
|
-
|
|
77
|
+
"files": [
|
|
78
|
+
"dist"
|
|
79
|
+
],
|
|
80
|
+
"svelte": "./dist/index.js",
|
|
81
|
+
"typesVersions": {
|
|
82
|
+
">4.0": {
|
|
83
|
+
"JsonLd.svelte": [
|
|
84
|
+
"./dist/JsonLd.svelte.d.ts"
|
|
85
|
+
],
|
|
86
|
+
"MetaTags.svelte": [
|
|
87
|
+
"./dist/MetaTags.svelte.d.ts"
|
|
88
|
+
],
|
|
89
|
+
"index": [
|
|
90
|
+
"./dist/index.d.ts"
|
|
91
|
+
]
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,181 +0,0 @@
|
|
|
1
|
-
## [2.6.4](https://github.com/oekazuma/svelte-meta-tags/compare/v2.6.3...v2.6.4) (2022-11-16)
|
|
2
|
-
|
|
3
|
-
- add Svelte to peerDependencies([2d99894](https://github.com/oekazuma/svelte-meta-tags/commit/2d9989454e5ed51d9f4d0d9e9300ba933d0c0ffa))
|
|
4
|
-
|
|
5
|
-
## [2.6.3](https://github.com/oekazuma/svelte-meta-tags/compare/v2.6.2...v2.6.3) (2022-08-31)
|
|
6
|
-
|
|
7
|
-
- add schema-dts to dependencies([9824e38](https://github.com/oekazuma/svelte-meta-tags/commit/9824e388728e37009aa06f56642ec4a2b9520921))
|
|
8
|
-
|
|
9
|
-
## [2.6.2](https://github.com/oekazuma/svelte-meta-tags/compare/v2.6.1...v2.6.2) (2022-08-11)
|
|
10
|
-
|
|
11
|
-
- trim production dependencies([2008183](https://github.com/oekazuma/svelte-meta-tags/commit/2008183b0a712cc6288e188cabdb14c85f93b0ee))
|
|
12
|
-
|
|
13
|
-
## [2.6.1](https://github.com/oekazuma/svelte-meta-tags/compare/v2.6.0...v2.6.1) (2022-05-27)
|
|
14
|
-
|
|
15
|
-
- clean up JSON-LD ([16d107c](https://github.com/oekazuma/svelte-meta-tags/commit/16d107c09546ffd6b2f8312a6851d46bd0da6ae1))
|
|
16
|
-
|
|
17
|
-
# [2.6.0](https://github.com/oekazuma/svelte-meta-tags/compare/v2.5.5...v2.6.0) (2022-05-16)
|
|
18
|
-
|
|
19
|
-
### Features
|
|
20
|
-
|
|
21
|
-
- allow all public type definitions to be retrieved ([3e04e2f](https://github.com/oekazuma/svelte-meta-tags/commit/3e04e2fd8ff8446709a7d015b5819971cb42765d))
|
|
22
|
-
|
|
23
|
-
## [2.5.5](https://github.com/oekazuma/svelte-meta-tags/compare/v2.5.4...v2.5.5) (2022-05-06)
|
|
24
|
-
|
|
25
|
-
### Bug Fixes
|
|
26
|
-
|
|
27
|
-
- revert JSON.stringify options back to previous ([5160cec](https://github.com/oekazuma/svelte-meta-tags/commit/5160cec32f50a29a8e59aa87f851557444ad26a3))
|
|
28
|
-
|
|
29
|
-
## [2.5.4](https://github.com/oekazuma/svelte-meta-tags/compare/v2.5.3...v2.5.4) (2022-05-06)
|
|
30
|
-
|
|
31
|
-
### Bug Fixes
|
|
32
|
-
|
|
33
|
-
- obfuscate by concatenating script tag ([fa9d409](https://github.com/oekazuma/svelte-meta-tags/commit/fa9d40960afc8b06d4aadc6a958fc05b6b15a96c))
|
|
34
|
-
|
|
35
|
-
## [2.5.3](https://github.com/oekazuma/svelte-meta-tags/compare/v2.5.2...v2.5.3) (2022-05-06)
|
|
36
|
-
|
|
37
|
-
- escaping content in script tags ([25bf038](https://github.com/oekazuma/svelte-meta-tags/commit/25bf038a485697249ecc9633166599b0652f3550))
|
|
38
|
-
|
|
39
|
-
## [2.5.2](https://github.com/oekazuma/svelte-meta-tags/compare/v2.5.1...v2.5.2) (2022-05-06)
|
|
40
|
-
|
|
41
|
-
- version bump for package
|
|
42
|
-
|
|
43
|
-
## [2.5.1](https://github.com/oekazuma/svelte-meta-tags/compare/v2.5.0...v2.5.1) (2022-03-22)
|
|
44
|
-
|
|
45
|
-
### Bug Fixes
|
|
46
|
-
|
|
47
|
-
- fix title to be reactive([a19d30b](https://github.com/oekazuma/svelte-meta-tags/commit/a19d30bad9938d78360aea126012bfd7061fff3f))
|
|
48
|
-
|
|
49
|
-
# [2.5.0](https://github.com/oekazuma/svelte-meta-tags/compare/v2.4.0...v2.5.0) (2022-03-19)
|
|
50
|
-
|
|
51
|
-
### Features
|
|
52
|
-
|
|
53
|
-
- add titleTemplate property ([3a252e5](https://github.com/oekazuma/svelte-meta-tags/commit/3a252e5783d04456e32539d8bd3ca7646809fd0d))
|
|
54
|
-
|
|
55
|
-
# [2.4.0](https://github.com/oekazuma/svelte-meta-tags/compare/v2.3.4...v2.4.0) (2022-03-12)
|
|
56
|
-
|
|
57
|
-
### Features
|
|
58
|
-
|
|
59
|
-
- add a property that allows selection of whether to output JSON-LD in the head or in the body ([91c9c38](https://github.com/oekazuma/svelte-meta-tags/commit/91c9c3861d5cc9168a6b3d90c2cf734f5c03f890))
|
|
60
|
-
|
|
61
|
-
## [2.3.4](https://github.com/oekazuma/svelte-meta-tags/compare/v2.3.3...v2.3.4) (2022-03-03)
|
|
62
|
-
|
|
63
|
-
### Bug Fixes
|
|
64
|
-
|
|
65
|
-
- add pnpm build to release command ([1c01f61](https://github.com/oekazuma/svelte-meta-tags/commit/1c01f619c5cd1dee51c58f4067fd315907fb4753))
|
|
66
|
-
|
|
67
|
-
## [2.3.3](https://github.com/oekazuma/svelte-meta-tags/compare/v2.3.2...v2.3.3) (2022-03-03)
|
|
68
|
-
|
|
69
|
-
### Bug Fixes
|
|
70
|
-
|
|
71
|
-
- fix tsconfig.json ([bd54216](https://github.com/oekazuma/svelte-meta-tags/commit/bd542167bc0f377157d7337b9eb2e9b58d63a625))
|
|
72
|
-
|
|
73
|
-
## [2.3.2](https://github.com/oekazuma/svelte-meta-tags/compare/v2.3.1...v2.3.2) (2022-02-28)
|
|
74
|
-
|
|
75
|
-
### Bug Fixes
|
|
76
|
-
|
|
77
|
-
- **deps:** update dependency schema-dts to v1.1.0 ([d57c99d](https://github.com/oekazuma/svelte-meta-tags/commit/d57c99d89b5071e1e2045892ee2814a7105251ce))
|
|
78
|
-
|
|
79
|
-
## [2.3.1](https://github.com/oekazuma/svelte-meta-tags/compare/v2.3.0...v2.3.1) (2022-02-25)
|
|
80
|
-
|
|
81
|
-
### Bug Fixes
|
|
82
|
-
|
|
83
|
-
- fix lint error in `@typescript-eslint/no-empty-interface` ([6f41cc4](https://github.com/oekazuma/svelte-meta-tags/commit/6f41cc4e0d0022b1be6c778d4520bdd7b0188127))
|
|
84
|
-
|
|
85
|
-
# [2.3.0](https://github.com/oekazuma/svelte-meta-tags/compare/v2.2.3...v2.3.0) (2022-01-28)
|
|
86
|
-
|
|
87
|
-
### Features
|
|
88
|
-
|
|
89
|
-
- add twitter title description image imageAlt ([e3270f5](https://github.com/oekazuma/svelte-meta-tags/commit/e3270f54fda56483a192d34dfc9d589c7949fc5b))
|
|
90
|
-
|
|
91
|
-
## [2.2.3](https://github.com/oekazuma/svelte-meta-tags/compare/v2.2.2...v2.2.3) (2022-01-14)
|
|
92
|
-
|
|
93
|
-
### Bug Fixes
|
|
94
|
-
|
|
95
|
-
- fix path to type definitions ([7c49639](https://github.com/oekazuma/svelte-meta-tags/commit/7c49639c1f08fe6ee6ea3e036c9982b1c1979c77))
|
|
96
|
-
|
|
97
|
-
## [2.2.2](https://github.com/oekazuma/svelte-meta-tags/compare/v2.2.1...v2.2.2) (2021-12-26)
|
|
98
|
-
|
|
99
|
-
### Bug Fixes
|
|
100
|
-
|
|
101
|
-
- revert changes so that npm and yarn can also be used for installation ([f536977](https://github.com/oekazuma/svelte-meta-tags/commit/f536977550948f675f4207b80dc5aca96cc535a0))
|
|
102
|
-
|
|
103
|
-
## [2.2.1](https://github.com/oekazuma/svelte-meta-tags/compare/v2.2.0...v2.2.1) (2021-12-21)
|
|
104
|
-
|
|
105
|
-
### Bug Fixes
|
|
106
|
-
|
|
107
|
-
- make the schema property of jsonLdProps not mandatory ([15f00f9](https://github.com/oekazuma/svelte-meta-tags/commit/15f00f9940fdcb8ac9a8c8f6ed51782bd5789ebd))
|
|
108
|
-
|
|
109
|
-
# [2.2.0](https://github.com/oekazuma/svelte-meta-tags/compare/v2.1.0...v2.2.0) (2021-12-17)
|
|
110
|
-
|
|
111
|
-
### Features
|
|
112
|
-
|
|
113
|
-
- improved Twitter's CardType type definition ([13b11fd](https://github.com/oekazuma/svelte-meta-tags/commit/13b11fd2e9f6625e1cd0802e825f312f37988666))
|
|
114
|
-
|
|
115
|
-
# [2.1.0](https://github.com/oekazuma/svelte-meta-tags/compare/v2.0.0...v2.1.0) (2021-11-04)
|
|
116
|
-
|
|
117
|
-
### Features
|
|
118
|
-
|
|
119
|
-
- allow title to be dynamically changed ([b9acefb](https://github.com/oekazuma/svelte-meta-tags/commit/b9acefbea7c64b5434837ffecc17423dcf0ce2d3))
|
|
120
|
-
|
|
121
|
-
# [2.0.0](https://github.com/oekazuma/svelte-meta-tags/compare/v1.2.2...v2.0.0) (2021-09-18)
|
|
122
|
-
|
|
123
|
-
### chore
|
|
124
|
-
|
|
125
|
-
- change name the MetaTags export ([d40b535](https://github.com/oekazuma/svelte-meta-tags/commit/d40b535249be8b629ba1034358865aa08993927c))
|
|
126
|
-
- remove jsonLd property from MetaTags component ([a05ae2b](https://github.com/oekazuma/svelte-meta-tags/commit/a05ae2b72a8605253a50249e8f76ee76cbe1411d))
|
|
127
|
-
|
|
128
|
-
### BREAKING CHANGES
|
|
129
|
-
|
|
130
|
-
- Change the way import is written.
|
|
131
|
-
- Remove jsonLd parameter from MetaTags component.
|
|
132
|
-
Please use the JsonLd component from now on.
|
|
133
|
-
|
|
134
|
-
## [1.2.2](https://github.com/oekazuma/svelte-meta-tags/compare/v1.2.1...v1.2.2) (2021-09-07)
|
|
135
|
-
|
|
136
|
-
### Bug Fixes
|
|
137
|
-
|
|
138
|
-
- fix types in package.json ([7be485a](https://github.com/oekazuma/svelte-meta-tags/commit/7be485a880203ce2038ea91768031fbbf66d32b5))
|
|
139
|
-
|
|
140
|
-
## [1.2.1](https://github.com/oekazuma/svelte-meta-tags/compare/v1.2.0...v1.2.1) (2021-09-07)
|
|
141
|
-
|
|
142
|
-
### Bug Fixes
|
|
143
|
-
|
|
144
|
-
- restore the emitTypes setting of package ([20d8a85](https://github.com/oekazuma/svelte-meta-tags/commit/20d8a85ab0f76a1a7c270cdf3a1062eb83c1aa59))
|
|
145
|
-
|
|
146
|
-
# [1.2.0](https://github.com/oekazuma/svelte-meta-tags/compare/v1.1.1...v1.2.0) (2021-09-07)
|
|
147
|
-
|
|
148
|
-
### Features
|
|
149
|
-
|
|
150
|
-
- import types to make them easier to use ([cdceda7](https://github.com/oekazuma/svelte-meta-tags/commit/cdceda73204d668f80cb2773b73e252e53d0d6a1))
|
|
151
|
-
|
|
152
|
-
## [1.1.1](https://github.com/oekazuma/svelte-meta-tags/compare/v1.1.0...v1.1.1) (2021-09-02)
|
|
153
|
-
|
|
154
|
-
### Bug Fixes
|
|
155
|
-
|
|
156
|
-
- update package.json ([cd0574c](https://github.com/oekazuma/svelte-meta-tags/commit/cd0574cf04050d3f8a031556ff20628aa390c671))
|
|
157
|
-
|
|
158
|
-
# [1.1.0](https://github.com/oekazuma/svelte-meta-tags/compare/v1.0.5...v1.1.0) (2021-08-30)
|
|
159
|
-
|
|
160
|
-
### Features
|
|
161
|
-
|
|
162
|
-
- separate JSON-LD from MetaTags component ([43698ab](https://github.com/oekazuma/svelte-meta-tags/commit/43698ab9b98781f3b9ff246640c1e29ab772ba75))
|
|
163
|
-
|
|
164
|
-
## [1.0.5](https://github.com/oekazuma/svelte-meta-tags/compare/v1.0.4...v1.0.5) (2021-08-30)
|
|
165
|
-
|
|
166
|
-
### Bug Fixes
|
|
167
|
-
|
|
168
|
-
- **deps:** update dependency schema-dts to v1 ([a13737a](https://github.com/oekazuma/svelte-meta-tags/commit/a13737a621d0a199b18dea55324b06ff9478fce1))
|
|
169
|
-
|
|
170
|
-
## [1.0.4](https://github.com/oekazuma/svelte-meta-tags/compare/v1.0.3...v1.0.4) (2021-08-27)
|
|
171
|
-
|
|
172
|
-
### Bug Fixes
|
|
173
|
-
|
|
174
|
-
- pkgRoot settings to semantic-releas ([c52e674](https://github.com/oekazuma/svelte-meta-tags/commit/c52e674e9240cc61eb4cbe062f483f96dbf02b1a))
|
|
175
|
-
|
|
176
|
-
## [1.0.3](https://github.com/oekazuma/svelte-meta-tags/compare/v1.0.2...v1.0.3) (2021-08-27)
|
|
177
|
-
|
|
178
|
-
### Bug Fixes
|
|
179
|
-
|
|
180
|
-
- change branch to branches ([0c4c0e3](https://github.com/oekazuma/svelte-meta-tags/commit/0c4c0e346ee63648bc771033b828a19324739d68))
|
|
181
|
-
- change commitlint type-enum ([0b84c33](https://github.com/oekazuma/svelte-meta-tags/commit/0b84c33e32b1e59c8a7deb3e45d6cece28069eaa))
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|