-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1018 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1018 Bytes
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
{
"name": "knowledge-sharing",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Markdown-first presentation system with static rendering for GitHub Pages.",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"validate": "node --import tsx scripts/build-presentation-manifest.mjs",
"test": "vitest run",
"ascii": "node --import tsx scripts/generate-slide-ascii.mjs"
},
"keywords": [
"markdown",
"presentations",
"github-pages",
"ascii",
"mermaid"
],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.32.1",
"dependencies": {
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"markdown-it": "^14.1.0",
"mermaid": "^11.12.0"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.6.1",
"jsdom": "^26.1.0",
"type-fest": "^4.41.0",
"tsx": "^4.20.5",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^3.2.4"
}
}