-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 KB
/
package.json
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
{
"name": "markexpress",
"version": "1.1.0",
"description": "Express middleware for serving Markdown files as HTML",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"test": "echo \"No Tests Written\" && exit 0",
"format": "biome format src --write",
"lint": "biome lint src",
"check": "biome check",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henriquekirchheck/markexpress.git"
},
"keywords": [
"markdown",
"html",
"middleware",
"node"
],
"author": "Henrique Kirch Heck",
"license": "MIT",
"bugs": {
"url": "https://github.com/henriquekirchheck/markexpress/issues"
},
"homepage": "https://github.com/henriquekirchheck/markexpress#readme",
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@types/express": "^4.17.21",
"@types/node": "^20.10.4",
"typescript": "^5.3.3"
},
"dependencies": {
"express": "^4.18.2",
"front-matter": "^4.0.2",
"marked": "^11.0.1"
}
}