-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.49 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.49 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
{
"name": "@sadcoderlabs/laughing-man",
"version": "0.5.0",
"description": "Turn your Markdown into a self-hosted newsletter",
"type": "module",
"files": [
"bin",
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"exports": {
".": "./dist/src/cli.js"
},
"engines": {
"node": ">=22.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sadcoderlabs/laughing-man.git"
},
"keywords": [
"newsletter",
"markdown",
"email",
"cli",
"cloudflare-pages",
"resend"
],
"bin": {
"laughing-man": "bin/laughing-man"
},
"scripts": {
"clean": "rm -rf dist",
"build": "bun run clean && tsc --project tsconfig.build.json && mkdir -p dist/skills/laughing-man && cp -R themes/laughing-man/assets dist/themes/laughing-man/ && cp skills/laughing-man/SKILL.md dist/skills/laughing-man/",
"prepack": "bun run build",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@11ty/gray-matter": "2.0.1",
"cloudflare": "5.2.0",
"js-beautify": "1.15.4",
"marked": "17.0.5",
"marked-shiki": "1.2.1",
"mjml": "4.18.0",
"resend": "6.9.4",
"shiki": "4.0.2",
"wrangler": "4.79.0",
"yaml": "2.8.3",
"zod": "4.3.6"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20260317.1",
"@types/bun": "1.3.11",
"@types/js-beautify": "1.14.3",
"@types/mjml": "4.7.4",
"@types/node": "25.5.0",
"typescript": "6.0.2"
}
}