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
|
{
"name": "homestead",
"module": "src/index.ts",
"scripts": {
"start": "bun run .",
"build": "bun run bin/build.ts"
},
"devDependencies": {
"bun-types": "latest",
"cheerio": "1.0.0-rc.12",
"highlight.js": "^11.8.0",
"marked": "^9.0.3",
"marked-highlight": "^2.0.6",
"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"
}
}
|