-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.38 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.38 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "markview-oss",
"version": "1.0.0",
"type": "module",
"description": "Lightweight markdown viewer with GFM support, syntax highlighting, Mermaid diagrams, and KaTeX math rendering.",
"author": "MarkView Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/markview-app/markview.git"
},
"keywords": [
"markdown",
"markdown-viewer",
"markdown-reader",
"chrome-extension",
"browser-extension",
"markdown-preview",
"syntax-highlighting",
"mermaid-diagrams",
"katex",
"math-equations",
"github-flavored-markdown",
"gfm",
"documentation-viewer",
"readme-viewer",
"markdown-renderer",
"code-highlighting",
"dark-theme",
"light-theme",
"open-source",
"typescript"
],
"engines": {
"node": ">=16.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"clean": "node scripts/clean.mjs",
"dev": "webpack --config build/webpack.dev.cjs --watch",
"dev:clean": "pnpm run clean && pnpm run dev",
"build": "npm-run-all build:*",
"build:clean": "node scripts/clean.mjs",
"build:manifest": "node scripts/manifest.mjs",
"build:extension": "webpack --config build/webpack.prod.cjs",
"build:zip": "node scripts/zip.mjs",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts,.js",
"lint:fix": "eslint src --ext .ts,.js --fix",
"format": "prettier --write \"src/**/*.{ts,js,css,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,css,json}\"",
"type-check": "tsc --noEmit",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@iktakahiro/markdown-it-katex": "^4.0.1",
"@mdit/plugin-alert": "^0.22.3",
"highlight.js": "^11.6.0",
"katex": "^0.16.25",
"lodash.throttle": "^4.1.1",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-container": "^4.0.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-ins": "^4.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-multimd-table": "^4.2.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-task-lists": "^2.1.1",
"mermaid": "^11.4.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@types/chrome": "^0.0.246",
"@types/katex": "^0.16.7",
"@types/lodash.throttle": "^4.1.7",
"@types/markdown-it": "^13.0.0",
"@types/markdown-it-container": "^2.0.10",
"@types/markdown-it-emoji": "^3.0.1",
"@types/markdown-it-footnote": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/node": "^24.10.1",
"@types/unist": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitest/coverage-v8": "^4.0.14",
"@vitest/ui": "^4.0.14",
"archiver": "^6.0.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"esbuild-loader": "^4.0.0",
"eslint": "^8.50.0",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.0.11",
"jsdom": "^27.2.0",
"mini-css-extract-plugin": "^2.7.6",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"vitest": "^4.0.14",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.0",
"webpack-merge": "^5.9.0"
}
}