-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
96 lines (96 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
{
"name": "@maizzle/framework",
"version": "4.8.9",
"description": "Maizzle is a framework that helps you quickly build HTML emails with Tailwind CSS.",
"license": "MIT",
"main": "src/index.js",
"types": "types/index.d.ts",
"bin": {
"maizzle": "bin/maizzle"
},
"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"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "biome lint ./src ./test",
"pretest": "npm run lint",
"test": "c8 ava"
},
"files": [
"src",
"types",
"bin"
],
"dependencies": {
"@maizzle/cli": "^1.5.1",
"autoprefixer": "^10.4.14",
"browser-sync": "^3.0.2",
"color-shorthand-hex-to-six-digit": "^3.0.2",
"email-comb": "^5.3.1",
"fast-glob": "^3.3.2",
"front-matter": "^4.0.0",
"fs-extra": "^11.2.0",
"html-crush": "^4.0.0",
"is-url-superb": "^5.0.0",
"juice": "^10.0.0",
"lodash": "^4.17.20",
"ora": "^5.1.0",
"postcss": "^8.4.21",
"postcss-import": "^15.0.0",
"postcss-merge-longhand": "^6.0.0",
"posthtml": "^0.16.6",
"posthtml-attrs-parser": "^1.1.0",
"posthtml-base-url": "^2.0.2",
"posthtml-component": "^1.1.0",
"posthtml-content": "^2.1.0",
"posthtml-extend": "^0.6.0",
"posthtml-extra-attributes": "^2.0.0",
"posthtml-fetch": "^3.0.0",
"posthtml-markdownit": "^3.1.0",
"posthtml-match-helper": "^1.0.3",
"posthtml-mso": "^3.1.0",
"posthtml-postcss-merge-longhand": "^3.1.0",
"posthtml-safe-class-names": "^3.0.0",
"posthtml-url-parameters": "^2.0.0",
"pretty": "^2.0.0",
"query-string": "^7.1.3",
"string-remove-widows": "^2.1.0",
"string-strip-html": "^8.2.0",
"tailwindcss": "^3.2.7"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/browser-sync": "^2.29.0",
"@types/js-beautify": "^1.14.0",
"@types/markdown-it": "^14.0.0",
"ava": "^5.2.0",
"c8": "^10.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"ava": {
"files": [
"test/**/test*.js"
]
}
}