1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-12 01:50:52 +01:00
mkdocs-material/package.json

109 lines
3.3 KiB
JSON
Raw Normal View History

2016-01-28 23:27:15 +01:00
{
"name": "mkdocs-material",
2023-01-12 09:09:49 +01:00
"version": "9.0.4",
2022-04-18 22:16:15 +02:00
"description": "Documentation that simply works",
"keywords": [
"mkdocs",
"documentation",
"theme"
2016-01-28 23:27:15 +01:00
],
2017-11-08 13:28:23 +01:00
"homepage": "https://squidfunk.github.io/mkdocs-material/",
"bugs": {
"url": "https://github.com/squidfunk/mkdocs-material/issues",
"email": "martin.donath@squidfunk.com"
},
2016-01-28 23:27:15 +01:00
"license": "MIT",
2019-12-17 09:53:16 +01:00
"private": true,
"author": {
"name": "Martin Donath",
"email": "martin.donath@squidfunk.com"
2016-01-28 23:27:15 +01:00
},
"contributors": [],
2016-01-28 23:27:15 +01:00
"repository": {
"type": "git",
2016-02-09 12:58:55 +01:00
"url": "https://github.com/squidfunk/mkdocs-material.git"
2016-01-28 23:27:15 +01:00
},
"scripts": {
2021-02-26 16:14:18 +01:00
"build": "rimraf material && ts-node -T tools/build --optimize",
"build:all": "rimraf material && ts-node -T tools/build --all --optimize",
2021-02-26 16:14:18 +01:00
"build:dirty": "ts-node -T tools/build --dirty",
2021-02-07 17:43:13 +01:00
"clean": "rimraf material",
2021-08-30 09:11:43 +02:00
"check": "run-p check:*",
"check:build": "tsc --noEmit",
"check:style": "run-p check:style:*",
2021-08-30 09:15:05 +02:00
"check:style:scss": "stylelint \"src/**/*.scss\"",
2021-08-30 09:11:43 +02:00
"check:style:ts": "eslint --cache \"src/**/*.ts\"",
"start": "ts-node -T tools/build --verbose --all --dirty --watch",
2021-08-02 09:17:02 +02:00
"upgrade": "run-s upgrade:*",
"upgrade:bump": "ncu --upgrade --filterVersion \"/^\\^/\"",
"upgrade:install": "npm install"
},
2019-09-28 19:32:02 +02:00
"dependencies": {
"array-flat-polyfill": "^1.0.1",
2022-05-09 07:50:54 +02:00
"clipboard": "^2.0.11",
2019-10-27 10:26:54 +01:00
"escape-html": "^1.0.3",
"focus-visible": "^5.2.0",
"fuzzaldrin-plus": "^0.6.0",
2022-12-31 13:35:06 +01:00
"iframe-worker": "^1.0.2",
"lunr": "^2.3.9",
2022-10-03 09:48:36 +02:00
"lunr-languages": "^1.10.0",
"resize-observer-polyfill": "^1.5.1",
2022-12-19 20:51:22 +01:00
"rxjs": "^7.8.0",
2022-12-31 13:35:06 +01:00
"unfetch": "^5.0.0",
"url-polyfill": "^1.1.12"
2019-09-28 19:32:02 +02:00
},
"devDependencies": {
2022-11-15 19:56:47 +01:00
"@fortawesome/fontawesome-free": "^6.2.1",
2022-12-12 10:42:43 +01:00
"@mdi/svg": "^7.1.96",
2023-01-08 12:54:39 +01:00
"@primer/octicons": "^17.10.1",
"@types/css-modules": "^1.0.2",
2022-04-24 13:40:24 +02:00
"@types/escape-html": "^1.0.2",
2021-07-12 11:49:45 +02:00
"@types/fuzzaldrin-plus": "^0.6.2",
2021-12-27 09:00:10 +01:00
"@types/html-minifier": "^4.0.2",
2021-07-12 11:49:45 +02:00
"@types/lunr": "^2.3.4",
2022-12-31 13:35:06 +01:00
"@types/node": "^18.11.18",
2022-02-09 10:14:30 +01:00
"@types/resize-observer-browser": "^0.1.7",
"@types/sass": "^1.43.1",
2023-01-08 12:54:39 +01:00
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
2022-11-03 14:17:01 +01:00
"autoprefixer": "^10.4.13",
2022-01-21 18:58:53 +01:00
"chokidar": "^3.5.3",
"cssnano": "5.1.0",
2023-01-08 12:54:39 +01:00
"esbuild": "^0.16.15",
2022-12-31 13:35:06 +01:00
"eslint": "^8.31.0",
2021-02-07 17:43:13 +01:00
"eslint-plugin-eslint-comments": "^3.2.0",
2022-04-09 17:17:26 +02:00
"eslint-plugin-import": "^2.26.0",
2022-11-27 10:50:37 +01:00
"eslint-plugin-jsdoc": "^39.6.4",
2021-02-07 17:43:13 +01:00
"eslint-plugin-no-null": "^1.0.2",
2020-01-26 15:42:22 +01:00
"github-types": "^1.0.0",
"gitlab": "^14.2.2",
2022-01-30 09:04:11 +01:00
"google-fonts-complete": "^2.1.1",
2019-09-28 19:32:02 +02:00
"html-minifier": "^4.0.0",
"material-design-color": "^2.3.2",
"material-shadows": "^3.0.1",
2022-12-31 13:35:06 +01:00
"npm-check-updates": "^16.6.2",
2021-08-02 09:17:02 +02:00
"npm-run-all": "^4.1.5",
2023-01-08 12:54:39 +01:00
"postcss": "^8.4.21",
2022-07-12 17:43:42 +02:00
"postcss-dir-pseudo-class": "^6.0.5",
2020-10-31 15:01:19 +01:00
"postcss-inline-svg": "^5.0.0",
2022-02-09 10:14:30 +01:00
"postcss-logical": "^5.0.4",
"postcss-pseudo-is": "^0.3.0",
2022-11-15 19:56:47 +01:00
"preact": "^10.11.3",
"rimraf": "^3.0.2",
2022-12-31 13:35:06 +01:00
"sass": "^1.57.1",
"simple-icons": "^8.2.0",
"stylelint": "^14.16.1",
2022-07-20 15:19:39 +02:00
"stylelint-config-rational-order": "^0.1.2",
2022-08-13 08:34:25 +02:00
"stylelint-config-recommended": "^9.0.0",
2022-11-07 07:35:01 +01:00
"stylelint-config-standard-scss": "^6.1.0",
2022-07-12 17:43:42 +02:00
"stylelint-scss": "^4.3.0",
2022-11-15 23:03:04 +01:00
"svgo": "3.0.0",
2021-05-17 16:14:39 +02:00
"tiny-glob": "^0.2.9",
2022-07-20 15:05:35 +02:00
"ts-node": "^10.9.1",
2022-12-12 10:42:43 +01:00
"typescript": "^4.9.4"
},
"engines": {
2022-02-05 18:34:38 +01:00
"node": ">= 16"
2019-12-17 09:53:16 +01:00
}
2016-01-28 23:27:15 +01:00
}