mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-18 11:29:26 +03:00
90c5b5c475
* website: Fix issue where files are ignored during build. * Update packages/docusaurus-config/lib/routing.js Co-authored-by: Dominic R <dominic@sdko.org> Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com> * website: Update paths. --------- Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com> Co-authored-by: Dominic R <dominic@sdko.org>
72 lines
1.8 KiB
JSON
72 lines
1.8 KiB
JSON
{
|
|
"name": "@goauthentik/docusaurus-config",
|
|
"version": "2.1.1",
|
|
"description": "authentik's Docusaurus config",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc -p .",
|
|
"prettier": "prettier --write .",
|
|
"prettier-check": "prettier --check ."
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"import": "./index.js",
|
|
"types": "./out/index.d.ts"
|
|
},
|
|
"./css/*.css": "./css/*.css"
|
|
},
|
|
"dependencies": {
|
|
"deepmerge-ts": "^7.1.5",
|
|
"prism-react-renderer": "^2.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@docusaurus/theme-common": "^3.8.1",
|
|
"@docusaurus/theme-search-algolia": "^3.8.1",
|
|
"@docusaurus/types": "^3.8.1",
|
|
"@goauthentik/prettier-config": "^2.0.0",
|
|
"@goauthentik/tsconfig": "^1.0.4",
|
|
"@types/react": "^19.1.6",
|
|
"@types/react-dom": "^19.1.5",
|
|
"prettier": "^3.5.3",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@docusaurus/theme-common": "^3.8.1",
|
|
"@docusaurus/theme-search-algolia": "^3.8.1",
|
|
"@docusaurus/types": "^3.8.0",
|
|
"react": ">=18",
|
|
"react-dom": ">=18"
|
|
},
|
|
"optionalDependencies": {
|
|
"react": ">=18",
|
|
"react-dom": ">=18"
|
|
},
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"types": "./out/index.d.ts",
|
|
"files": [
|
|
"./index.js",
|
|
"lib/**/*",
|
|
"css/**/*",
|
|
"out/**/*"
|
|
],
|
|
"prettier": "@goauthentik/prettier-config",
|
|
"peerDependenciesMeta": {
|
|
"@docusaurus/theme-search-algolia": {
|
|
"optional": true
|
|
},
|
|
"react": {
|
|
"optional": true
|
|
},
|
|
"react-dom": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|