-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.98 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.98 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
{
"name": "@reliverse/relsend",
"version": "1.1.5",
"type": "module",
"module": "src/mod.ts",
"bin": {
"relsend": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/mod.d.ts",
"default": "./dist/mod.js"
}
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"dependencies": {
"@react-email/components": "^0.5.7",
"@react-email/preview-server": "^4.3.2",
"@react-email/tailwind": "^1.2.2",
"@reliverse/ohmymsg": "^1.0.3",
"@reliverse/relico": "^1.4.2",
"@tailwindcss/cli": "^4.1.16",
"cli-cursor": "^5.0.0",
"cli-spinners": "^3.3.0",
"is-interactive": "^2.0.0",
"is-unicode-supported": "^2.1.0",
"nodemailer": "^7.0.10",
"p-map": "^7.0.3",
"pretty-bytes": "^7.1.0",
"pretty-ms": "^9.3.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-email": "^4.3.2",
"resend": "^6.4.0",
"stdin-discarder": "^0.2.2",
"string-width": "^8.1.0",
"strip-ansi": "^7.1.2",
"tailwindcss": "^4.1.16"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.3.3",
"@reliverse/dler": "^2.0.27",
"@types/bun": "^1.3.1",
"@types/node": "^24.10.0",
"@types/nodemailer": "^7.0.3",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"typescript": "^5.9.3",
"ultracite": "^6.2.0"
},
"scripts": {
"emails:send": "bun relsend send --template newsletter",
"pub": "bun dler build && bun dler publish",
"relsend": "bun src/cli.ts",
"latest": "bun dler update && bun install && bun check",
"preview": "email dev --dir emails/components",
"check": "bun typecheck && bun format",
"typecheck": "bun dler tsc",
"lint": "biome check --write --unsafe",
"build:css": "npx @tailwindcss/cli -i ./styles/globals.css -o ./styles/dist/output.css",
"build:css:watch": "npx @tailwindcss/cli -i ./styles/globals.css -o ./styles/dist/output.css --watch"
}
}