-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 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
{
"name": "pubmd",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"pubmd": "./dist/src/cli/main.js"
},
"scripts": {
"dev": "tsx watch src/server/index.ts",
"build": "tsc -p tsconfig.json",
"build:binary": "bun build src/cli/main.ts --compile --outfile pubmd",
"vercel-build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"format": "biome format --write .",
"format:check": "biome format --check .",
"test": "vitest run",
"test:watch": "vitest",
"verify": "npm run test && npm run lint && npm run typecheck && npm run build"
},
"dependencies": {
"@hono/node-server": "^1.19.4",
"@vercel/blob": "^2.3.1",
"gray-matter": "^4.0.3",
"hono": "^4.12.8",
"rehype-highlight": "^7.0.2",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"unified": "^11.0.5",
"zod": "^4.1.12"
},
"devDependencies": {
"@biomejs/biome": "^2.3.4",
"@types/node": "^24.6.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
}
}