-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.12 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@maizzle/framework",
"version": "6.0.1",
"description": "Maizzle is a framework that helps you quickly build HTML emails with Tailwind CSS.",
"license": "MIT",
"type": "module",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"maizzle": "./bin/maizzle.mjs"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsdown",
"dev": "vitest",
"lint": "oxlint",
"test": "vitest run --coverage",
"pretest": "npm run lint",
"prepublishOnly": "npm run build",
"release": "npm run build && npx np"
},
"bundleDependencies": [
"maizzle"
],
"dependencies": {
"@lucide/vue": "^1.16.0",
"@maizzle/tailwindcss": "latest",
"@tailwindcss/postcss": "^4.3.0",
"@tailwindcss/vite": "^4.3.0",
"@unhead/vue": "^3.0.4",
"@vitejs/plugin-vue": "^6.0.4",
"@vueuse/core": "^14.2.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"color-shorthand-hex-to-six-digit": "^5.1.3",
"css-select": "^7.0.0",
"culori": "^4.0.2",
"defu": "^6.1.4",
"dom-serializer": "^3.0.0",
"domhandler": "^6.0.1",
"email-comb": "^7.1.3",
"html-crush": "^6.1.3",
"htmlparser2": "^12.0.0",
"is-url-superb": "^6.1.0",
"jiti": "^2.6.1",
"juice": "^12.0.0",
"maizzle": "latest",
"markdown-exit": "^1.1.0-beta.2",
"nodemailer": "^9.0.0",
"ora": "^9.3.0",
"oxfmt": "^0.53.0",
"pathe": "^2.0.3",
"postcss": "^8.5.6",
"postcss-calc": "^10.1.1",
"postcss-merge-longhand": "^8.0.0",
"postcss-safe-parser": "^7.0.1",
"postcss-sort-media-queries": "^6.5.0",
"postcss-value-parser": "^4.2.0",
"query-string": "^9.3.1",
"reka-ui": "^2.9.3",
"string-strip-html": "^13.5.3",
"tinyglobby": "^0.2.15",
"tinypool": "^2.1.0",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"unplugin-auto-import": "^21.0.0",
"unplugin-vue-components": "^32.1.0",
"unplugin-vue-markdown": "^32.0.0",
"uqr": "^0.1.3",
"vite": "^8.0.16",
"vue-router": "^5.0.2"
},
"peerDependencies": {
"shiki": "^1 || ^2 || ^3 || ^4",
"tailwind-merge": "^2 || ^3",
"vue": "^3"
},
"devDependencies": {
"@types/culori": "^4.0.1",
"@types/node": "^25.2.3",
"@types/nodemailer": "^8.0.0",
"@types/postcss-safe-parser": "^5.0.4",
"@vitest/coverage-v8": "^4.0.18",
"@vue/test-utils": "^2.4.6",
"happy-dom": "^20.6.3",
"oxlint": "^1.50.0",
"shiki": "^4.0.2",
"tailwind-merge": "^3.5.0",
"tsdown": "^0.22.0",
"vitest": "^4.0.18",
"vue": "^3.5.28"
},
"repository": {
"type": "git",
"url": "https://github.com/maizzle/framework.git"
},
"bugs": "https://github.com/maizzle/framework/issues",
"homepage": "https://maizzle.com",
"author": "Cosmin Popovici (https://github.com/cossssmin)",
"keywords": [
"maizzle",
"tailwindcss",
"responsive-email",
"email-framework",
"email-template",
"email-marketing",
"email-campaigns",
"email-newsletter",
"email-boilerplate",
"html-emails"
]
}