-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
107 lines (107 loc) · 2.74 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
101
102
103
104
105
106
107
{
"name": "@maizzle/framework",
"version": "5.0.0",
"description": "Maizzle is a framework that helps you quickly build HTML emails with Tailwind CSS.",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./src/index.js",
"types": "./types/index.d.ts"
}
},
"bin": {
"maizzle": "bin/maizzle"
},
"files": [
"bin",
"src",
"types"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vitest",
"release": "npx np",
"pretest": "npm run lint",
"test": "vitest run --coverage",
"lint": "biome lint ./src ./test"
},
"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"
],
"dependencies": {
"@maizzle/cli": "^2.0.0",
"cheerio": "^1.0.0",
"chokidar": "^3.6.0",
"cli-table3": "^0.6.5",
"color-shorthand-hex-to-six-digit": "^5.0.16",
"defu": "^6.1.4",
"email-comb": "^7.0.21",
"express": "^4.21.0",
"fast-glob": "^3.3.2",
"gray-matter": "^4.0.3",
"html-crush": "^6.0.19",
"is-url-superb": "^6.1.0",
"istextorbinary": "^9.5.0",
"juice": "^11.0.0",
"lodash-es": "^4.17.21",
"morphdom": "^2.7.4",
"ora": "^8.1.0",
"pathe": "^2.0.0",
"postcss": "^8.4.49",
"postcss-calc": "^10.0.2",
"postcss-css-variables": "^0.19.0",
"postcss-import": "^16.1.0",
"postcss-safe-parser": "^7.0.0",
"posthtml": "^0.16.6",
"posthtml-attrs-parser": "^1.1.1",
"posthtml-base-url": "^3.1.4",
"posthtml-component": "^2.1.0",
"posthtml-content": "^2.1.0",
"posthtml-expressions": "^1.11.4",
"posthtml-extra-attributes": "^3.1.0",
"posthtml-fetch": "^4.0.0",
"posthtml-markdownit": "^3.1.0",
"posthtml-mso": "^3.1.0",
"posthtml-parser": "^0.12.1",
"posthtml-postcss": "^1.0.2",
"posthtml-postcss-merge-longhand": "^3.1.2",
"posthtml-render": "^3.0.0",
"posthtml-safe-class-names": "^4.1.0",
"posthtml-url-parameters": "^3.1.0",
"posthtml-widows": "^1.0.0",
"pretty": "^2.0.0",
"string-strip-html": "^13.4.8",
"tailwindcss": "^3.4.16",
"ws": "^8.18.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@types/js-beautify": "^1.14.3",
"@types/markdown-it": "^14.1.2",
"@vitest/coverage-v8": "^2.1.5",
"supertest": "^7.0.0",
"vitest": "^2.1.5"
},
"engines": {
"node": ">=18.20"
}
}