UNPKG

@layoutaid/nuxt

Version:

Nuxt module that adds visual layout aid for integrating web pages

54 lines 1.6 kB
{ "name": "@layoutaid/nuxt", "type": "module", "version": "1.0.0", "description": "Nuxt module that adds visual layout aid for integrating web pages", "author": "leoboyerbx", "license": "MIT", "homepage": "https://github.com/leoboyerbx/layout-aid#readme", "repository": "https://github.com/leoboyerbx/layout-aid/tree/main/packages/nuxt", "keywords": [ "nuxt", "nuxt-module", "layoutaid" ], "exports": { ".": { "types": "./dist/types.d.ts", "import": "./dist/module.mjs", "require": "./dist/module.cjs" } }, "main": "./dist/module.cjs", "types": "./dist/types.d.ts", "files": [ "dist" ], "dependencies": { "@nuxt/kit": "^3.15.3", "@layoutaid/core": "^1.0.0" }, "devDependencies": { "@nuxt/devtools": "^1.7.0", "@nuxt/module-builder": "^0.8.4", "@nuxt/schema": "^3.15.3", "@nuxt/test-utils": "^3.15.4", "@types/node": "latest", "changelogen": "^0.5.7", "nuxt": "^3.15.3", "typescript": "~5.7.3", "vitest": "^3.0.4", "vue-tsc": "^2.2.0" }, "scripts": { "build": "echo 'Skipping build for nuxt module'", "dev": "nuxi dev playground", "dev:build": "nuxi build playground", "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground", "release": "npm run lint && npm run prepack && changelogen --release && npm publish && git push --follow-tags", "lint": "eslint .", "test": "vitest run", "test:watch": "vitest watch", "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit" } }