-
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) · 2.32 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.32 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": "markdown-viewer-app",
"version": "0.1.0",
"description": "``` markdown-viewer-app/ ├── index.html # Main HTML file ├── style.css # Base styles (layout, structure) ├── script.js # All JavaScript functionality └── themes/ # Theme directory ├── default-light.css # Default light theme ├── default-dark.css # Default dark theme ├── ocean-light.css # Ocean light theme ├── ocean-dark.css # Ocean dark theme ├── neon-light.css # Neon light theme ├── neon-dark.css # Neon dark theme ├── forest-light.css # Forest light theme ├── forest-dark.css # Forest dark theme ├── sunset-light.css # Sunset light theme └── sunset-dark.css # Sunset dark theme ```",
"main": "script.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"format": "prettier --write \"**/*.{js,css,html,md}\"",
"format:check": "prettier --check \"**/*.{js,css,html,md}\"",
"review": "git add . && npx ai-review quick",
"review:full": "git add . && npx ai-review full"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrakharMNNIT/markdown-viewer-app.git"
},
"keywords": [],
"author": "Prax Lannister <prakhar.2019ca66@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PrakharMNNIT/markdown-viewer-app/issues"
},
"homepage": "https://github.com/PrakharMNNIT/markdown-viewer-app#readme",
"devDependencies": {
"@eslint/js": "9.39.2",
"@vitest/coverage-v8": "4.0.8",
"@vitest/ui": "4.0.8",
"ai-visual-code-review": "2.2.1",
"eslint": "9.39.1",
"globals": "16.5.0",
"jsdom": "27.1.0",
"prettier": "3.6.2",
"typescript": "5.9.3",
"vite": "7.2.2",
"vite-plugin-prismjs": "0.0.11",
"vitest": "4.0.8"
},
"dependencies": {
"dompurify": "3.3.1",
"html2pdf.js": "0.14.0",
"katex": "0.16.27",
"marked": "17.0.1",
"marked-footnote": "1.4.0",
"mermaid": "11.12.2",
"prismjs": "1.30.0"
}
}