mirror of
https://github.com/goauthentik/authentik
synced 2026-04-25 17:15:26 +02:00
41 lines
982 B
JSON
41 lines
982 B
JSON
{
|
|
"name": "@goauthentik/prettier-config",
|
|
"version": "3.0.0",
|
|
"description": "authentik's Prettier config",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc -p .",
|
|
"prettier": "prettier --write .",
|
|
"prettier-check": "prettier --check ."
|
|
},
|
|
"type": "module",
|
|
"exports": "./index.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",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|