mirror of
https://github.com/goauthentik/authentik
synced 2026-04-27 18:07:15 +02:00
* core, web: Vendored client follow-ups - Updated packages for use with TypeScript 6 - Fix search results including symlinks. * Bump docker package. * web: bump vite from 8.0.2 to 8.0.3 in /web Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 8.0.2 to 8.0.3. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/create-vite@8.0.3/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 8.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Fix import declaration order. * Fix live reload imports, package declarations. * Tidy admin entrypoint. * Rename. * Fix import. * Fix import. * Update paths. Update Knip. * Bump knip. * Update esbuild.d.ts Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com> * Bump. * Re-enable deprecation warning. --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com> Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
95 lines
2.4 KiB
JSON
95 lines
2.4 KiB
JSON
{
|
|
"name": "@goauthentik/logger-js",
|
|
"version": "1.1.1",
|
|
"description": "Pino-based logger for authentik",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/goauthentik/authentik.git",
|
|
"directory": "packages/logger-js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p .",
|
|
"lint": "eslint --fix .",
|
|
"lint-check": "eslint --max-warnings 0 .",
|
|
"prettier": "prettier --write .",
|
|
"prettier-check": "prettier --check .",
|
|
"watch": "tsc -p . --watch"
|
|
},
|
|
"type": "module",
|
|
"types": "./out/index.d.ts",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"types": "./out/index.d.ts",
|
|
"node": "./lib/node.js",
|
|
"browser": "./index.js",
|
|
"import": "./index.js"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.3",
|
|
"@goauthentik/prettier-config": "../prettier-config",
|
|
"@goauthentik/tsconfig": "../tsconfig",
|
|
"@types/node": "^25.5.0",
|
|
"eslint": "^9.39.3",
|
|
"pino": "^10.3.1",
|
|
"pino-pretty": "^13.1.2",
|
|
"prettier": "^3.8.1",
|
|
"prettier-plugin-packagejson": "^3.0.2",
|
|
"typescript": "^6.0.2",
|
|
"typescript-eslint": "^8.57.2"
|
|
},
|
|
"peerDependencies": {
|
|
"pino": "^10.3.1",
|
|
"pino-pretty": "^13.1.2"
|
|
},
|
|
"files": [
|
|
"./index.js",
|
|
"lib/**/*",
|
|
"out/**/*"
|
|
],
|
|
"engines": {
|
|
"node": ">=24",
|
|
"npm": ">=11.10.1"
|
|
},
|
|
"devEngines": {
|
|
"runtime": {
|
|
"name": "node",
|
|
"version": ">=24",
|
|
"onFail": "ignore"
|
|
},
|
|
"packageManager": {
|
|
"name": "npm",
|
|
"version": ">=11.10.1",
|
|
"onFail": "ignore"
|
|
}
|
|
},
|
|
"prettier": "@goauthentik/prettier-config",
|
|
"overrides": {
|
|
"@typescript-eslint/eslint-plugin": {
|
|
"typescript": "$typescript"
|
|
},
|
|
"@typescript-eslint/parser": {
|
|
"typescript": "$typescript"
|
|
},
|
|
"format-imports": {
|
|
"eslint": "$eslint"
|
|
},
|
|
"typescript-eslint": {
|
|
"typescript": "$typescript"
|
|
}
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"pino": {
|
|
"optional": true
|
|
},
|
|
"pino-pretty": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|