mirror of
https://github.com/goauthentik/authentik
synced 2026-04-25 17:15:26 +02:00
* web: Fix issues surrounding availability of controllers during init. web: Fix edgecase where flow does not have brand. * web: Fix import path. * web: Clean up mixin/controller paths. * web: Prepare for consistent import styling. - Prep for Storybook fixes. * web: Update MDX types. * web: Fix issues surrounding async imports, MDX typing, relative paths. * web: Format. Clarify. * web: Group module types.
39 lines
1023 B
JSON
39 lines
1023 B
JSON
{
|
|
"name": "@goauthentik/prettier-config",
|
|
"version": "2.0.0",
|
|
"description": "authentik's Prettier config",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc -p ."
|
|
},
|
|
"type": "module",
|
|
"exports": "./index.js",
|
|
"devDependencies": {
|
|
"@goauthentik/tsconfig": "^1.0.1",
|
|
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
"prettier": "^3.5.3",
|
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
"prettier-plugin-packagejson": "^2.5.14",
|
|
"typescript": "^5.8.2"
|
|
},
|
|
"peerDependencies": {
|
|
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
"prettier": "^3.5.3",
|
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
"prettier-plugin-packagejson": "^2.5.14"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.11"
|
|
},
|
|
"types": "./out/index.d.ts",
|
|
"files": [
|
|
"./index.js",
|
|
"lib/**/*",
|
|
"out/**/*"
|
|
],
|
|
"prettier": "./index.js",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|