-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "content-structure",
"type": "module",
"version": "2.2.2",
"description": "Stores parsed markdown in SQLite tables that can be used for rendering and database content management.",
"main": "index.js",
"bin": {
"content-structure": "cli.js"
},
"scripts": {
"demo": "pnpm --filter content-structure-example demo"
},
"dependencies": {
"better-sqlite3": "^12.4.1",
"glob": "^13.0.0",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.1",
"jsdom": "^27.2.0",
"remark": "^15.0.1",
"remark-directive": "^4.0.0",
"remark-gfm": "^4.0.1",
"slugify": "^1.6.6",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"sharp": "^0.33.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MicroWebStacks/content-structure.git"
},
"keywords": [
"markdown",
"remark",
"content",
"cms",
"structure",
"ast"
],
"author": "wassfila",
"license": "MIT",
"bugs": {
"url": "https://github.com/MicroWebStacks/content-structure/issues"
},
"homepage": "https://github.com/MicroWebStacks/content-structure#readme"
}