UNPKG

nuxt-strapi-blocks-renderer

Version:

Renderer for the strapi CMS blocks text content element.

81 lines 2.32 kB
{ "name": "nuxt-strapi-blocks-renderer", "version": "1.0.17", "description": "Renderer for the strapi CMS blocks text content element.", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/freb97/nuxt-strapi-blocks-renderer.git" }, "author": { "name": "Frederik Bußmann", "email": "frederik@bussmann.io" }, "type": "module", "exports": { ".": { "types": "./dist/types.d.mts", "import": "./dist/module.mjs" } }, "main": "./dist/module.mjs", "typesVersions": { "*": { ".": [ "./dist/types.d.mts" ] } }, "files": [ "dist" ], "scripts": { "dev": "npm run dev:basic", "dev:prepare": "nuxt-module-build prepare && nuxi prepare playground/basic && nuxi prepare playground/custom", "dev:basic": "nuxi dev playground/basic", "dev:custom": "nuxi dev playground/custom", "build": "nuxt-module-build build", "release": "npm run lint && npm run test && npm run build && npm publish", "release:ci": "npm run build && npm publish", "lint:es": "eslint './**/*.{js,ts,vue}' --max-warnings=0", "lint:types": "vue-tsc --noEmit", "test": "vitest run", "test:watch": "vitest watch", "renovate:config:validate": "renovate-config-validator" }, "dependencies": { "@nuxt/kit": "^3.16.2", "defu": "^6.1.4" }, "devDependencies": { "@nuxt/devtools": "^2.3.2", "@nuxt/eslint-config": "^1.3.0", "@nuxt/module-builder": "^1.0.1", "@nuxt/schema": "^3.16.2", "@nuxt/test-utils": "^3.17.2", "@nuxtjs/tailwindcss": "^6.13.2", "eslint": "^9.24.0", "nuxt": "^3.16.2", "renovate": "^39.240.1", "vitest": "^3.1.1", "vue-tsc": "^2.2.8" }, "keywords": [ "nuxt", "nuxt3", "nuxtjs", "nuxt-module", "strapi", "strapi-cms", "json", "blocks", "text", "renderer" ], "engines": { "node": "^18.x || ^20.x || ^22.x" }, "stackblitz": { "startCommand": "npm run dev:prepare && npm run dev:custom" } }