nuxt-schema-org 0.0.3 → 0.0.6

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # nuxt-schema-org
2
2
 
3
- The Nuxt.js integration for [vue-schema-org](https://github.com/harlan-zw/vue-schema-org).
3
+ The Nuxt.js integration for [@vueuse/schema-org](https://github.com/@vueuse/schema-org).
4
4
 
5
5
  ## Install
6
6
 
package/dist/module.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as _nuxt_schema from '@nuxt/schema';
2
- import { SchemaOrgOptions } from 'vue-schema-org';
2
+ import { SchemaOrgOptions } from '@vueuse/schema-org';
3
3
 
4
4
  interface ModuleOptions extends SchemaOrgOptions {
5
5
  /**
package/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "bridge": true
5
5
  },
6
6
  "name": "nuxt-schema-org",
7
- "version": "0.0.3"
7
+ "version": "0.0.6"
8
8
  }
package/dist/module.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { defineNuxtModule, createResolver, addPlugin, addTemplate, addComponent } from '@nuxt/kit';
2
- import { schemaOrgAutoImports, schemaOrgComponents } from 'vue-schema-org';
2
+ import { schemaOrgAutoImports, schemaOrgComponents } from '@vueuse/schema-org';
3
3
 
4
4
  const module = defineNuxtModule({
5
5
  meta: {
@@ -22,8 +22,8 @@ const module = defineNuxtModule({
22
22
  if (config.autoImportComposables) {
23
23
  nuxt.hook("autoImports:sources", (autoImports) => {
24
24
  autoImports.unshift({
25
- from: "vue-schema-org",
26
- imports: schemaOrgAutoImports["vue-schema-org"]
25
+ from: "@vueuse/schema-org",
26
+ imports: schemaOrgAutoImports["@vueuse/schema-org"]
27
27
  });
28
28
  });
29
29
  }
@@ -32,7 +32,7 @@ const module = defineNuxtModule({
32
32
  addComponent({
33
33
  name: component,
34
34
  export: component,
35
- filePath: "vue-schema-org"
35
+ filePath: "@vueuse/schema-org"
36
36
  });
37
37
  });
38
38
  }
@@ -1,4 +1,4 @@
1
- import { createSchemaOrg } from "vue-schema-org";
1
+ import { createSchemaOrg } from "@vueuse/schema-org";
2
2
  import { defineNuxtPlugin } from "#app";
3
3
  import { useHead, useRoute } from "#imports";
4
4
  import meta from "#build/schemaOrg.config.mjs";
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "nuxt-schema-org",
3
3
  "type": "module",
4
- "version": "0.0.3",
5
- "description": "Nuxt module for vue-schema-org",
4
+ "version": "0.0.6",
5
+ "description": "Nuxt module for @vueuse/schema-org",
6
6
  "keywords": [
7
7
  "schema-org",
8
8
  "nuxt",
9
- "vue-schema-org",
9
+ "@vueuse/schema-org",
10
10
  "nuxt-module",
11
11
  "nuxt3"
12
12
  ],
@@ -14,7 +14,7 @@
14
14
  "author": "Harlan Wilton <harlan@harlanzw.com>",
15
15
  "repository": {
16
16
  "type": "git",
17
- "url": "git+https://github.com/harlan-zw/vue-schema-org.git",
17
+ "url": "git+https://github.com/@vueuse/schema-org.git",
18
18
  "directory": "packages/nuxt"
19
19
  },
20
20
  "funding": "https://github.com/sponsors/harlan-zw",
@@ -30,9 +30,9 @@
30
30
  "dist"
31
31
  ],
32
32
  "sideEffects": false,
33
- "homepage": "https://github.com/harlan-zw/vue-schema-org#readme",
33
+ "homepage": "https://github.com/@vueuse/schema-org#readme",
34
34
  "bugs": {
35
- "url": "https://github.com/harlan-zw/vue-schema-org/issues"
35
+ "url": "https://github.com/@vueuse/schema-org/issues"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "nuxi prepare ../../playgrounds/nuxt3 && nuxt-module-build",
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "dependencies": {
45
45
  "@nuxt/kit": "^3.0.0-rc.1",
46
- "vue-schema-org": "workspace:*"
46
+ "@vueuse/schema-org": "workspace:*"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@nuxt/module-builder": "latest",