-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 4.08 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 4.08 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
113
114
115
116
117
118
{
"name": "mkdocs-material-extras",
"version": "0.0.11",
"packageManager": "pnpm@7.1.7",
"description": "mkdocs material extras",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "rimraf mkdocs_material_extras/theme && ts-node -T tools/build --optimize",
"build:dirty": "ts-node -T tools/build --dirty",
"build:doc": "bash build_doc.sh",
"clean": "rimraf mkdocs_material_extras/theme",
"check": "run-p check:*",
"check:build": "tsc --noEmit",
"check:md": "remark ./docs/**/*.md --quiet --frail",
"check:style": "run-p check:style:*",
"check:style:scss": "stylelint \"src/**/*.scss\"",
"check:style:ts": "eslint \"src/**/*.{js,ts}\"",
"format:md": "remark ./docs/**/*.md --quiet --frail --output",
"start": "ts-node -T tools/build --verbose --dirty --watch",
"upgrade": "run-s upgrade:*",
"upgrade:bump": "ncu --upgrade --filterVersion \"/^\\^/\"",
"upgrade:install": "npm install",
"release": "bumpp --commit --push --tag"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dup4/mkdocs-material-extras.git"
},
"keywords": [
"mkdocs",
"material",
"theme"
],
"author": {
"name": "Dup4",
"email": "lyuzhi.pan@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Dup4/mkdocs-material-extras/issues",
"email": "lyuzhi.pan@gmail.com"
},
"homepage": "https://github.com/Dup4/mkdocs-material-extras#readme",
"dependencies": {
"array-flat-polyfill": "^1.0.1",
"clipboard": "^2.0.10",
"escape-html": "^1.0.3",
"focus-visible": "^5.2.0",
"fuzzaldrin-plus": "^0.6.0",
"lunr": "^2.3.9",
"lunr-languages": "^1.9.0",
"resize-observer-polyfill": "^1.5.1",
"rxjs": "^7.5.4",
"unfetch": "^4.2.0",
"url-polyfill": "^1.1.12"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.0.0",
"@mdi/svg": "^6.5.95",
"@primer/octicons": "^17.0.0",
"@types/clipboard": "^2.0.7",
"@types/css-modules": "^1.0.2",
"@types/escape-html": "1.0.1",
"@types/fuzzaldrin-plus": "^0.6.2",
"@types/html-minifier": "^4.0.2",
"@types/lunr": "^2.3.4",
"@types/node": "^17.0.21",
"@types/resize-observer-browser": "^0.1.7",
"@types/sass": "^1.43.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"autoprefixer": "^10.4.2",
"bumpp": "^7.1.1",
"chokidar": "^3.5.3",
"css-mqpacker": "^7.0.0",
"cssnano": "^5.1.0",
"esbuild": "^0.14.24",
"eslint": "^8.10.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.9.6",
"eslint-plugin-no-null": "^1.0.2",
"github-types": "^1.0.0",
"gitlab": "^14.2.2",
"google-fonts-complete": "^2.1.1",
"html-minifier": "^4.0.0",
"material-design-color": "^2.3.2",
"material-shadows": "^3.0.1",
"mathjax-render-for-mkdocs-material": "^0.0.1",
"npm-check-updates": "^12.5.2",
"npm-run-all": "^4.1.5",
"pnpm": "^7.1.7",
"postcss": "^8.4.7",
"postcss-dir-pseudo-class": "^6.0.4",
"postcss-inline-svg": "^5.0.0",
"postcss-logical": "^5.0.4",
"postcss-svgo": "^5.1.0",
"preact": "^10.6.6",
"remark-cli": "^10.0.1",
"remark-lint-code-block-style": "^3.1.0",
"remark-preset-lint-mkdocs-material": "^0.6.0",
"rimraf": "^3.0.2",
"sass": "^1.49.9",
"stylelint": "^14.5.3",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-scss": "^4.1.0",
"tiny-glob": "^0.2.9",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
},
"engines": {
"node": ">= 16"
}
}