-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.34 KB
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
{
"name": "@maizzle/nuxt",
"version": "1.0.0",
"description": "Nuxt module for the Maizzle email framework",
"license": "MIT",
"author": "Cosmin Popovici (https://github.com/cossssmin)",
"homepage": "https://maizzle.com",
"repository": "https://github.com/maizzle/nuxt",
"bugs": "https://github.com/maizzle/nuxt/issues",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare",
"release": "npx np --no-tests"
},
"dependencies": {
"@nuxt/kit": "^4.4.8"
},
"peerDependencies": {
"@maizzle/framework": "latest"
},
"devDependencies": {
"@maizzle/framework": "latest",
"@nuxt/module-builder": "^1.0.2",
"typescript": "^5.8.3"
},
"keywords": [
"nuxt",
"nuxt-module",
"maizzle",
"email",
"tailwindcss",
"responsive-email",
"email-framework",
"email-template",
"email-marketing",
"email-campaigns",
"email-newsletter",
"email-boilerplate",
"html-emails"
]
}