-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.42 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@goede/nuxt-mail",
"version": "1.0.3",
"description": "Adds email sending capability to a Nuxt.js app. Adds a server route, an injected variable, and uses nodemailer to send emails.",
"keywords": [
"email",
"frontend",
"inject",
"javascript",
"mail",
"nodemailer",
"npm",
"npm-package",
"nuxt",
"nuxt-module",
"nuxtjs",
"nuxtjs-module",
"server",
"webdevelopment"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BobbieGoede/nuxt-mail.git"
},
"funding": "https://github.com/sponsors/bobbiegoede",
"license": "MIT",
"author": "Bobbie Goede",
"type": "module",
"files": [
"dist"
],
"pnpm": {
"overrides": {
"@goede/nuxt-mail": "link:."
}
},
"resolutions": {
"@goede/nuxt-mail": "link:."
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"scripts": {
"prepare": "nuxt prepare",
"prepack": "pnpm build",
"build": "nuxt-module-build build .",
"lint": "eslint .",
"changelog": "gh-changelogen --repo=BobbieGoede/nuxt-mail",
"release": "bumpp --commit \"release: v%s\" --push --tag",
"test": "pnpm --filter './specs/fixtures/**' dev:prepare && vitest"
},
"dependencies": {
"@nuxt/kit": "^3.13.0",
"@types/nodemailer": "^6.4.17",
"nodemailer": "^6.4.11",
"pathe": "^1.1.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.4.1",
"@eslint/js": "^9.9.1",
"@nuxt/module-builder": "^0.8.3",
"@nuxt/schema": "^3.13.0",
"@nuxt/test-utils": "^3.14.1",
"@playwright/test": "^1.46.1",
"@types/eslint": "^9.6.1",
"bumpp": "^9.5.2",
"changelogithub": "^0.13.10",
"consola": "^3.2.3",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"gh-changelogen": "^0.2.8",
"globals": "^15.9.0",
"h3": "^1.12.0",
"jiti": "^1.21.6",
"nitropack": "^2.9.7",
"nuxt": "^3.13.0",
"ofetch": "^1.3.4",
"pkg-pr-new": "^0.0.20",
"pkg-types": "^1.2.0",
"playwright-core": "^1.46.1",
"smtp-tester": "^2.0.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"unbuild": "^2.0.0",
"vitest": "^2.0.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}