2016-01-29 01:27:15 +03:00
|
|
|
{
|
2016-02-11 14:09:58 +03:00
|
|
|
"name": "mkdocs-material",
|
2022-03-27 15:25:25 +03:00
|
|
|
"version": "8.2.8",
|
2017-01-12 22:15:30 +03:00
|
|
|
"description": "A Material Design theme for MkDocs",
|
2016-10-07 22:27:29 +03:00
|
|
|
"keywords": [
|
|
|
|
"mkdocs",
|
|
|
|
"documentation",
|
|
|
|
"theme"
|
2016-01-29 01:27:15 +03:00
|
|
|
],
|
2017-11-08 15:28:23 +03:00
|
|
|
"homepage": "https://squidfunk.github.io/mkdocs-material/",
|
2016-10-07 22:27:29 +03:00
|
|
|
"bugs": {
|
2016-10-10 13:35:25 +03:00
|
|
|
"url": "https://github.com/squidfunk/mkdocs-material/issues",
|
|
|
|
"email": "martin.donath@squidfunk.com"
|
2016-10-07 22:27:29 +03:00
|
|
|
},
|
2016-01-29 01:27:15 +03:00
|
|
|
"license": "MIT",
|
2019-12-17 11:53:16 +03:00
|
|
|
"private": true,
|
2016-10-07 22:27:29 +03:00
|
|
|
"author": {
|
|
|
|
"name": "Martin Donath",
|
|
|
|
"email": "martin.donath@squidfunk.com"
|
2016-01-29 01:27:15 +03:00
|
|
|
},
|
2016-10-07 22:27:29 +03:00
|
|
|
"contributors": [],
|
2016-01-29 01:27:15 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-02-09 14:58:55 +03:00
|
|
|
"url": "https://github.com/squidfunk/mkdocs-material.git"
|
2016-01-29 01:27:15 +03:00
|
|
|
},
|
2016-10-07 22:27:29 +03:00
|
|
|
"scripts": {
|
2021-02-26 18:14:18 +03:00
|
|
|
"build": "rimraf material && ts-node -T tools/build --optimize",
|
|
|
|
"build:dirty": "ts-node -T tools/build --dirty",
|
2021-02-07 19:43:13 +03:00
|
|
|
"clean": "rimraf material",
|
2021-08-30 10:11:43 +03:00
|
|
|
"check": "run-p check:*",
|
|
|
|
"check:build": "tsc --noEmit",
|
|
|
|
"check:style": "run-p check:style:*",
|
2021-08-30 10:15:05 +03:00
|
|
|
"check:style:scss": "stylelint \"src/**/*.scss\"",
|
2021-08-30 10:11:43 +03:00
|
|
|
"check:style:ts": "eslint --cache \"src/**/*.ts\"",
|
2021-08-02 10:17:02 +03:00
|
|
|
"start": "ts-node -T tools/build --verbose --dirty --watch",
|
|
|
|
"upgrade": "run-s upgrade:*",
|
|
|
|
"upgrade:bump": "ncu --upgrade --filterVersion \"/^\\^/\"",
|
|
|
|
"upgrade:install": "npm install"
|
2016-10-07 22:27:29 +03:00
|
|
|
},
|
2019-09-28 20:32:02 +03:00
|
|
|
"dependencies": {
|
2022-01-06 23:33:38 +03:00
|
|
|
"array-flat-polyfill": "^1.0.1",
|
2022-02-09 12:14:30 +03:00
|
|
|
"clipboard": "^2.0.10",
|
2019-10-27 12:26:54 +03:00
|
|
|
"escape-html": "^1.0.3",
|
2020-10-12 11:32:25 +03:00
|
|
|
"focus-visible": "^5.2.0",
|
2021-02-12 15:25:13 +03:00
|
|
|
"fuzzaldrin-plus": "^0.6.0",
|
2020-08-24 11:17:59 +03:00
|
|
|
"lunr": "^2.3.9",
|
2021-08-23 15:45:31 +03:00
|
|
|
"lunr-languages": "^1.9.0",
|
2022-01-06 22:10:41 +03:00
|
|
|
"resize-observer-polyfill": "^1.5.1",
|
2022-03-22 21:34:23 +03:00
|
|
|
"rxjs": "^7.5.5",
|
2022-01-06 22:57:06 +03:00
|
|
|
"unfetch": "^4.2.0",
|
|
|
|
"url-polyfill": "^1.1.12"
|
2019-09-28 20:32:02 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-03-22 21:34:23 +03:00
|
|
|
"@fortawesome/fontawesome-free": "^6.1.1",
|
2022-03-28 18:50:26 +03:00
|
|
|
"@mdi/svg": "^6.6.96",
|
2022-03-07 10:42:56 +03:00
|
|
|
"@primer/octicons": "^17.0.0",
|
2021-05-24 16:36:12 +03:00
|
|
|
"@types/clipboard": "^2.0.7",
|
2022-02-17 19:20:36 +03:00
|
|
|
"@types/css-modules": "^1.0.2",
|
2021-04-26 08:36:17 +03:00
|
|
|
"@types/escape-html": "1.0.1",
|
2021-07-12 12:49:45 +03:00
|
|
|
"@types/fuzzaldrin-plus": "^0.6.2",
|
2021-12-27 11:00:10 +03:00
|
|
|
"@types/html-minifier": "^4.0.2",
|
2021-07-12 12:49:45 +03:00
|
|
|
"@types/lunr": "^2.3.4",
|
2022-03-28 18:50:26 +03:00
|
|
|
"@types/node": "^17.0.23",
|
2022-02-09 12:14:30 +03:00
|
|
|
"@types/resize-observer-browser": "^0.1.7",
|
2021-11-28 16:58:25 +03:00
|
|
|
"@types/sass": "^1.43.1",
|
2022-03-22 21:34:23 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.16.0",
|
|
|
|
"@typescript-eslint/parser": "^5.16.0",
|
|
|
|
"autoprefixer": "^10.4.4",
|
2022-01-21 20:58:53 +03:00
|
|
|
"chokidar": "^3.5.3",
|
2022-03-07 10:42:56 +03:00
|
|
|
"cssnano": "^5.1.0",
|
2022-03-28 18:50:26 +03:00
|
|
|
"esbuild": "^0.14.28",
|
|
|
|
"eslint": "^8.12.0",
|
2021-02-07 19:43:13 +03:00
|
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
2022-01-05 18:30:57 +03:00
|
|
|
"eslint-plugin-import": "^2.25.4",
|
2022-03-28 18:50:26 +03:00
|
|
|
"eslint-plugin-jsdoc": "^38.1.3",
|
2021-02-07 19:43:13 +03:00
|
|
|
"eslint-plugin-no-null": "^1.0.2",
|
2020-01-26 17:42:22 +03:00
|
|
|
"github-types": "^1.0.0",
|
2020-02-18 12:10:40 +03:00
|
|
|
"gitlab": "^14.2.2",
|
2022-01-30 11:04:11 +03:00
|
|
|
"google-fonts-complete": "^2.1.1",
|
2019-09-28 20:32:02 +03:00
|
|
|
"html-minifier": "^4.0.0",
|
2017-11-21 23:32:25 +03:00
|
|
|
"material-design-color": "^2.3.2",
|
|
|
|
"material-shadows": "^3.0.1",
|
2022-03-22 21:34:23 +03:00
|
|
|
"npm-check-updates": "^12.5.4",
|
2021-08-02 10:17:02 +03:00
|
|
|
"npm-run-all": "^4.1.5",
|
2022-03-07 10:42:56 +03:00
|
|
|
"postcss": "^8.4.8",
|
2022-02-09 12:14:30 +03:00
|
|
|
"postcss-dir-pseudo-class": "^6.0.4",
|
2020-10-31 17:01:19 +03:00
|
|
|
"postcss-inline-svg": "^5.0.0",
|
2022-02-09 12:14:30 +03:00
|
|
|
"postcss-logical": "^5.0.4",
|
2022-02-21 11:12:49 +03:00
|
|
|
"preact": "^10.6.6",
|
2020-02-21 11:59:03 +03:00
|
|
|
"rimraf": "^3.0.2",
|
2022-02-28 11:19:27 +03:00
|
|
|
"sass": "^1.49.9",
|
2022-03-28 18:50:26 +03:00
|
|
|
"stylelint": "^14.6.1",
|
2020-03-06 17:21:08 +03:00
|
|
|
"stylelint-config-rational-order": "^0.1.2",
|
2022-02-09 12:14:30 +03:00
|
|
|
"stylelint-config-recommended": "^7.0.0",
|
2021-11-21 22:03:26 +03:00
|
|
|
"stylelint-config-standard-scss": "^3.0.0",
|
2022-03-22 21:34:23 +03:00
|
|
|
"stylelint-scss": "^4.2.0",
|
2022-03-28 18:59:34 +03:00
|
|
|
"svgo": "^2.8.0",
|
2021-05-17 17:14:39 +03:00
|
|
|
"tiny-glob": "^0.2.9",
|
2022-03-07 10:42:56 +03:00
|
|
|
"ts-node": "^10.7.0",
|
2022-03-28 18:50:26 +03:00
|
|
|
"typescript": "^4.6.3"
|
2016-10-07 22:27:29 +03:00
|
|
|
},
|
|
|
|
"engines": {
|
2022-02-05 20:34:38 +03:00
|
|
|
"node": ">= 16"
|
2019-12-17 11:53:16 +03:00
|
|
|
}
|
2016-01-29 01:27:15 +03:00
|
|
|
}
|