-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.11 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
{
"name": "@maizzle/cli",
"version": "2.0.0",
"description": "CLI tool for the Maizzle Email Framework",
"license": "MIT",
"type": "module",
"publishConfig": {
"access": "public"
},
"exports": "./src/index.js",
"bin": {
"maizzle": "bin/maizzle.mjs"
},
"files": [
"bin",
"src"
],
"scripts": {
"release": "npx np",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/maizzle/cli.git"
},
"bugs": "https://github.com/maizzle/cli/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",
"email-cli"
],
"dependencies": {
"@clack/prompts": "^0.9.0",
"commander": "^12.1.0",
"create-maizzle": "^0.3.0",
"import-from-esm": "^1.3.4",
"ora": "^8.0.1",
"pathe": "^1.1.2",
"picocolors": "^1.0.1"
}
}