-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.14 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.14 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
{
"name": "mddaemon",
"version": "0.1.2",
"description": "Local markdown server with Mermaid diagram validation",
"main": "index.js",
"type": "module",
"bin": {
"mddaemon": "bin/mddaemon"
},
"scripts": {
"start": "node bin/mddaemon run",
"dev": "nodemon -e js,json,ejs,css --watch lib --watch templates --watch themes --watch bin --watch $HOME/.config/mddaemon bin/mddaemon run -p 8080 -t midnight-blue",
"test": "node --test test/*.test.js"
},
"keywords": [
"markdown",
"mermaid",
"diagrams",
"validation",
"server",
"cli"
],
"author": "Jason May",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jasonmay/mddaemon.git"
},
"homepage": "https://github.com/jasonmay/mddaemon#readme",
"bugs": {
"url": "https://github.com/jasonmay/mddaemon/issues"
},
"engines": {
"node": ">=18"
},
"files": [
"bin",
"lib",
"templates",
"themes"
],
"dependencies": {
"ejs": "^3.1.10",
"mermaid": "^10.6.1",
"showdown": "^2.1.0"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"nodemon": "^3.1.11"
}
}