UNPKG

nuxt-schema-org

Version:

The quickest and easiest way to build Schema.org graphs for Nuxt.

96 lines 2.62 kB
{ "name": "nuxt-schema-org", "type": "module", "version": "5.0.6", "description": "The quickest and easiest way to build Schema.org graphs for Nuxt.", "author": "Harlan Wilton <harlan@harlanzw.com>", "license": "MIT", "funding": "https://github.com/sponsors/harlan-zw", "homepage": "https://nuxtseo.com/schema-org", "repository": { "type": "git", "url": "git+https://github.com/harlan-zw/nuxt-schema-org.git" }, "bugs": { "url": "https://github.com/harlan-zw/nuxt-schema-org/issues" }, "keywords": [ "schema-org", "nuxt", "@nuxt-schema-org", "nuxt-module", "nuxt3" ], "exports": { ".": { "types": "./dist/types.d.mts", "import": "./dist/module.mjs" }, "./schema": "./dist/schema.mjs", "./content": "./dist/content.mjs" }, "main": "./dist/module.mjs", "typesVersions": { "*": { ".": [ "./dist/types.d.mts" ], "content": [ "./dist/content.d.mts" ], "schema": [ "./dist/schema.d.mts" ] } }, "files": [ "dist" ], "peerDependencies": { "@unhead/vue": "^2.0.7" }, "peerDependenciesMeta": { "@unhead/vue": { "optional": true } }, "dependencies": { "@nuxt/kit": "^3.17.5", "@unhead/schema-org": "^2.0.11", "defu": "^6.1.4", "nuxt-site-config": "^3.2.2", "pathe": "^2.0.3", "pkg-types": "^2.1.0", "sirv": "^3.0.1" }, "devDependencies": { "@antfu/eslint-config": "^4.16.1", "@arethetypeswrong/cli": "^0.18.2", "@nuxt/content": "^3.6.1", "@nuxt/module-builder": "^1.0.1", "@nuxt/schema": "^3.17.5", "@nuxt/test-utils": "^3.19.1", "@nuxt/ui": "^3.2.0", "@nuxtjs/i18n": "^9.5.6", "@nuxtjs/robots": "^5.2.11", "bumpp": "^10.2.0", "cheerio": "^1.1.0", "eslint": "^9.29.0", "nuxt": "^3.17.5", "typescript": "^5.8.3", "vitest": "^3.2.4" }, "scripts": { "lint": "eslint . --fix", "client:build": "nuxi generate client", "client:dev": "nuxi dev client --port 3030", "build": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt-module-build build && npm run client:build", "dev": "nuxi dev playground", "dev:build": "nuxi build playground", "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground && nuxi prepare client", "release": "pnpm build && bumpp && pnpm -r publish", "typecheck": "tsc --noEmit ", "test": "nuxi prepare test/fixtures/i18n && nuxi prepare test/fixtures/i18n-domains && vitest", "test:attw": "attw --pack" } }