nuxt-swal
Version:
A sweet alert module for Nuxt
82 lines (81 loc) • 2.07 kB
JSON
{
"name": "nuxt-swal",
"version": "1.0.0",
"description": "A sweet alert module for Nuxt",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/forinda/nuxt-swal.git"
},
"bugs": {
"url": "https://github.com/forinda/nuxt-swal/issues"
},
"homepage": "https://github.com/forinda/nuxt-swal#readme",
"license": "MIT",
"type": "module",
"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"
],
"scripts": {
"prepack": "nuxt-module-build build",
"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 test && 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"
},
"dependencies": {
"@nuxt/kit": "^3.15.2"
},
"devDependencies": {
"@nuxt/devtools": "^1.7.0",
"@nuxt/eslint-config": "^0.7.5",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.15.2",
"@nuxt/test-utils": "^3.15.4",
"@nuxtjs/tailwindcss": "^6.13.1",
"@types/node": "latest",
"changelogen": "^0.5.7",
"eslint": "^9.19.0",
"nuxt": "^3.15.2",
"typescript": "~5.7.3",
"vitest": "^3.0.4",
"vue-tsc": "^2.2.0"
},
"peerDependencies": {
"sweetalert2": "^11.15.10"
},
"directories": {
"test": "test"
},
"keywords": [
"nofications",
"typescript",
"vue",
"sweetalert",
"sweetalert2",
"notification",
"nuxt-module",
"vue3",
"nuxt-ui",
"nuxt3"
],
"author": "Felix Orinda",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}