nuxt-mailchannels
Version:
MailChannels Email API integration for Nuxt
66 lines • 1.93 kB
JSON
{
"name": "nuxt-mailchannels",
"version": "0.4.6",
"description": "MailChannels Email API integration for Nuxt",
"keywords": [
"nuxt",
"mailchannels",
"email",
"transactional"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Yizack/nuxt-mailchannels.git"
},
"homepage": "https://github.com/Yizack/nuxt-mailchannels",
"author": {
"name": "Yizack Rangel",
"email": "yizackr@gmail.com",
"url": "https://yizack.com"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"files": [
"dist"
],
"dependencies": {
"@nuxt/kit": "^4.5.1",
"defu": "^6.1.7",
"mailchannels-sdk": "^1.3.1"
},
"devDependencies": {
"@nuxt/devtools": "^3.4.0",
"@nuxt/eslint-config": "^1.16.0",
"@nuxt/module-builder": "^1.0.3",
"@nuxt/schema": "^4.5.1",
"@nuxt/test-utils": "^4.1.0",
"@types/node": "^26.1.2",
"changelogen": "^0.6.2",
"eslint": "^10.8.0",
"nuxt": "^4.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.10",
"vue-tsc": "^3.3.9"
},
"scripts": {
"build": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt-module-build build",
"dev": "nuxt dev playground",
"dev:build": "nuxt build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground",
"release": "node --run checks && changelogen --release --push --no-github",
"release:github": "changelogen gh release",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run --reporter=verbose",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc -b --noEmit",
"test:watch": "vitest watch",
"checks": "node --run lint && node --run test && node --run test:types && node --run build"
}
}