UNPKG

nuxt-toastify

Version:
78 lines 1.86 kB
{ "name": "nuxt-toastify", "version": "1.1.0", "description": "Wrapper for Vue 3 Toastify", "repository": "modbender/nuxt-toastify", "license": "MIT", "type": "module", "keywords": [ "vue", "vue3", "nuxt", "nuxt3", "notification", "vue-notification", "vue3-notification", "nuxt-notification", "nuxt3-notification", "alert", "toast", "toastify", "vue-toastify", "vue3-toastify", "nuxt-toastify", "nuxt3-toastify", "vue-toast", "vue3-toast", "nuxt-toast", "nuxt3-toast", "vue3-component", "nuxt3-component" ], "exports": { ".": { "types": "./dist/types.d.mts", "import": "./dist/module.mjs" } }, "main": "./dist/module.mjs", "typesVersions": { "*": { ".": [ "./dist/types.d.mts" ] } }, "files": [ "dist" ], "dependencies": { "@nuxt/kit": "^4.0.2", "defu": "^6.1.4", "vue3-toastify": "^0.2.8" }, "devDependencies": { "@nuxt/eslint-config": "^1.7.1", "@nuxt/module-builder": "^1.0.2", "@nuxt/schema": "^4.0.2", "@nuxt/test-utils": "^3.19.2", "@types/node": "^24.1.0", "changelogen": "^0.6.2", "eslint": "^9.32.0", "nuxt": "^4.0.2", "typescript": "^5.8.3", "vitest": "^3.2.4", "vue-tsc": "~2.2.12" }, "scripts": { "dev": "nuxi dev playground", "dev:build": "nuxi build playground", "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground", "release": "pnpm run lint && pnpm run test && pnpm run prepack && changelogen --release && pnpm publish && git push --follow-tags", "lint": "eslint .", "lint:fix": "eslint . --fix", "test": "vitest run", "test:watch": "vitest watch", "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit" } }