-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.21 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
52
53
54
55
{
"name": "@exor404/mdstack",
"version": "0.2.1",
"description": "Drop a folder of markdown files, get a rendered site.",
"type": "module",
"bin": {
"mdstack": "./bin/cli.js"
},
"files": [
"bin",
"app/astro.config.mjs",
"app/package.json",
"app/integrations",
"app/public",
"app/src",
"LICENSE",
"README.md"
],
"keywords": [
"markdown",
"static-site-generator",
"ssg",
"documentation",
"docs",
"cli",
"zero-config",
"astro"
],
"author": "eXor404 (https://github.com/eXor404)",
"license": "MIT",
"homepage": "https://github.com/eXor404/mdstack#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/eXor404/mdstack.git"
},
"bugs": {
"url": "https://github.com/eXor404/mdstack/issues"
},
"scripts": {
"dev": "node bin/cli.js dev ./example",
"build": "node bin/cli.js build ./example",
"preview": "node bin/cli.js preview ./example",
"prepublishOnly": "node scripts/prepublish-check.mjs"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"astro": "^6.2.1",
"katex": "^0.16.45",
"mermaid": "^11.14.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0"
}
}