-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.89 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "vaultpress",
"version": "0.1.0",
"type": "module",
"description": "Publish an Obsidian vault as a documentation site with Next.js and Fumadocs",
"license": "MIT",
"author": "Qiyang",
"repository": {
"type": "git",
"url": "git+https://github.com/qiyangdev/vaultpress.git"
},
"bugs": {
"url": "https://github.com/qiyangdev/vaultpress/issues"
},
"homepage": "https://github.com/qiyangdev/vaultpress#readme",
"keywords": [
"obsidian",
"fumadocs",
"nextjs",
"documentation",
"markdown",
"mdx",
"wiki",
"knowledge-graph"
],
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"test": "node --test tests/*.test.mjs",
"types:check": "fumadocs-mdx && next typegen && tsc --noEmit",
"postinstall": "fumadocs-mdx",
"lint": "oxlint",
"generate": "node --env-file=.env scripts/generate.ts",
"obsidian": "node --env-file=.env scripts/open-obsidian.ts"
},
"dependencies": {
"@takumi-rs/image-response": "^1.7.0",
"@xyflow/react": "^12.11.0",
"beautiful-mermaid": "^1.1.3",
"d3-force": "^3.0.0",
"fumadocs-core": "16.9.3",
"fumadocs-mdx": "15.0.11",
"fumadocs-obsidian": "^0.1.0",
"fumadocs-ui": "16.9.3",
"katex": "^0.17.0",
"lucide-react": "^1.17.0",
"next": "16.2.7",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-force-graph-2d": "^1.29.1",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@inkjs/ui": "^2.0.0",
"@tailwindcss/postcss": "^4.3.0",
"@types/d3-force": "^3.0.10",
"@types/mdx": "^2.0.13",
"@types/node": "^25.9.1",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"ink": "^7.0.5",
"oxlint": "^1.68.0",
"postcss": "^8.5.15",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3"
}
}