mirror of
https://github.com/goauthentik/authentik
synced 2026-04-25 17:15:26 +02:00
* core: Bump packages. * Bump Live Reload dependencies. * Bump tsconfig. * Bum ESLint config deps. Fix formatting. * Bump Prettier deps. Fix ESlint config. * Bump live reload deps. Fix linter. * Bump website deps. * web: Update dependencies. Fix Playwright issues. * Fix deprecations. * Fix linter warnings. * Fix override, run audit. * Fix import path. * Tidy types. * Format. * Update ignore patterns. * Fix import path. * Update deps. Clean up workspace linting. * Update deps, options. * Hide icons in navbar. * Format. * Remove deprecated option. * Use relative packages. * Add scripts. Tidy. * Bump engines. * Clarify order. * Clarify order. Install base deps. * Format. * Fix stale user during tests. * Fix runtime errors. * Fix redirect during tests, UI change. * web: Fix danger button hover background color. * web: Adjust colors, padding. * web: Fix sidebar colors, padding. * Fix alignment. * Fix background contrast.
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"name": "@goauthentik/core",
|
|
"version": "1.0.0",
|
|
"description": "Core functionality for the authentik monorepo",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc -p ."
|
|
},
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
"./*/browser": {
|
|
"types": "./out/*/browser.d.ts",
|
|
"import": "./*/browser.js"
|
|
},
|
|
"./*/node": {
|
|
"types": "./out/*/node.d.ts",
|
|
"import": "./*/node.js"
|
|
},
|
|
"./*": {
|
|
"types": "./out/*/index.d.ts",
|
|
"import": "./*/index.js"
|
|
},
|
|
".": {
|
|
"import": "./index.js",
|
|
"types": "./out/index.d.ts"
|
|
}
|
|
},
|
|
"imports": {
|
|
"#*/browser": {
|
|
"types": "./out/*/browser.d.ts",
|
|
"import": "./*/browser.js"
|
|
},
|
|
"#*/node": {
|
|
"types": "./out/*/node.d.ts",
|
|
"import": "./*/node.js"
|
|
},
|
|
"#*": {
|
|
"types": "./out/*/index.d.ts",
|
|
"import": "./*/index.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@goauthentik/tsconfig": "^1.0.4",
|
|
"@types/node": "^24.10.1",
|
|
"@types/semver": "^7.7.1",
|
|
"semver": "^7.7.3",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=24",
|
|
"npm": ">=11.6.2"
|
|
},
|
|
"types": "./out/index.d.ts"
|
|
}
|