mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-18 03:19:51 +03:00
3a07d5d829
* web: Initial style clean up. * web: Clean up type 2 styles. * web: Clean up type 3 styles. * web: Add Prettier formatter.
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "@goauthentik/prettier-config",
|
|
"version": "3.1.0",
|
|
"description": "authentik's Prettier config",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc -p .",
|
|
"prettier": "prettier --write .",
|
|
"prettier-check": "prettier --check ."
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": "./index.js",
|
|
"./imports-plugin": "./lib/imports.js",
|
|
"./formatter": "./lib/formatter.js"
|
|
},
|
|
"dependencies": {
|
|
"format-imports": "^4.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@goauthentik/tsconfig": "^1.0.1",
|
|
"@types/node": "^24.0.4",
|
|
"prettier": "^3.6.1",
|
|
"prettier-plugin-packagejson": "^2.5.16",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"peerDependencies": {
|
|
"prettier": "^3.6.1",
|
|
"prettier-plugin-packagejson": "^2.5.16"
|
|
},
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"types": "./out/index.d.ts",
|
|
"files": [
|
|
"./index.js",
|
|
"lib/**/*",
|
|
"out/**/*"
|
|
],
|
|
"prettier": "./index.js",
|
|
"overrides": {
|
|
"format-imports": {
|
|
"eslint": "^9.30.1"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|