-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.3 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.3 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
{
"name": "alexandria",
"version": "1.0.0",
"description": "Alexandria GitHub Markdown Reader - A static web application for infinite GitHub markdown exploration",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"verify-deps": "node -e \"console.log('✅ highlight.js:', require('highlight.js/package.json').version); console.log('✅ rehype-highlight: installed');\""
},
"keywords": [
"github",
"markdown",
"reader",
"static",
"react",
"typescript"
],
"author": "Runaway Devil <runawaydevil@pm.me>",
"license": "MIT",
"homepage": "https://runawaydevil.github.io/Alexandria/",
"dependencies": {
"highlight.js": "^11.11.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.11.0",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^5.1.2",
"typescript": "^5.9.3",
"vite": "^7.3.0"
}
}