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
|
{
"name": "homestead",
"module": "src/index.ts",
"scripts": {
"start": "bun run .",
"dev": "bun run --preload ./bin/build.ts --watch src/app.ts",
"build": "bun run bin/build.ts"
},
"devDependencies": {
"@types/bun": "^1.0.12",
"cheerio": "1.0.0-rc.12",
"highlight.js": "^11.8.0",
"marked": "^9.0.3",
"marked-highlight": "^2.0.6",
"purgecss": "^6.0.0",
"toml-matter": "^1.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"type": "module",
"dependencies": {
"@sentry/node": "^7.70.0",
"bun-prometheus-client": "^0.0.2",
"loglevel": "^1.8.1",
"toml": "^3.0.0"
}
}
|