-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.7 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.7 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
{
"name": "md-reader",
"version": "2.12.12",
"author": "Bener",
"license": "MIT",
"description": "A markdown reader extension for chrome",
"homepage": "https://md-reader.github.io",
"repository": {
"type": "git",
"url": "git+https://github.com/Heroor/md-reader.git"
},
"bugs": {
"url": "https://github.com/Heroor/md-reader/issues"
},
"keywords": [
"md-reader",
"markdown",
"markdown reader",
"chrome extension"
],
"scripts": {
"dev": "webpack --config ./build/webpack.dev.js",
"build": "run-s build:*",
"build:manifest": "node ./scripts/manifest.mjs",
"build:extension": "webpack --config ./build/webpack.prod.js",
"build:zip": "node ./scripts/zip.mjs",
"lint": "prettier --write --ignore-unknown",
"preinstall": "node ./scripts/preinstall.mjs",
"prepare": "husky install"
},
"devDependencies": {
"@nuxt/friendly-errors-webpack-plugin": "^2.5.2",
"@tsconfig/svelte": "^3.0.0",
"@types/chrome": "^0.0.196",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.7.14",
"archiver": "^5.3.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"esbuild-loader": "^2.20.0",
"husky": "^8.0.1",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"svelte-loader": "^3.1.3",
"svelte-preprocess": "^4.10.7",
"svg-loader": "^0.0.2",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-ext-reloader": "^1.1.13",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@md-reader/markdown-it-mermaid": "^0.5.1",
"@md-reader/theme": "1.0.23-patch.1",
"@mdit/plugin-alert": "^0.22.1",
"@smui/button": "^4.2.0",
"@smui/chips": "^4.2.0",
"@smui/form-field": "^4.2.0",
"@smui/radio": "^4.2.0",
"@smui/select": "^4.2.0",
"@smui/switch": "^4.2.0",
"@traptitech/markdown-it-katex": "^3.6.0",
"highlight.js": "^11.6.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"markdown-it": "^13.0.1",
"markdown-it-abbr": "^1.0.4",
"markdown-it-container": "^3.0.0",
"markdown-it-deflist": "^2.1.0",
"markdown-it-emoji": "^2.0.2",
"markdown-it-footnote": "^3.0.3",
"markdown-it-ins": "^3.0.1",
"markdown-it-mark": "^3.0.1",
"markdown-it-multimd-table": "^4.2.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-table-of-contents": "^0.6.0",
"markdown-it-task-lists": "^2.1.1",
"svelte": "^3.50.0"
},
"lint-staged": {
"**/*": "npm run lint"
},
"engines": {
"node": ">=16.0.0"
}
}