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.
90 lines
2.5 KiB
JSON
90 lines
2.5 KiB
JSON
{
|
|
"name": "@goauthentik/esbuild-plugin-live-reload",
|
|
"version": "1.3.0",
|
|
"description": "ESBuild + browser refresh. Build completes, page reloads.",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "npm run build:types && npm run build:docs",
|
|
"build:docs": "typedoc",
|
|
"build:types": "tsc -p .",
|
|
"lint": "eslint --fix .",
|
|
"lint-check": "eslint --max-warnings 0 .",
|
|
"prettier": "prettier --cache --write -u .",
|
|
"prettier-check": "prettier --cache --check -u ."
|
|
},
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"types": "./out/index.d.ts",
|
|
"import": "./index.js"
|
|
},
|
|
"./shared": {
|
|
"types": "./out/shared/index.d.ts",
|
|
"import": "./shared/index.js"
|
|
},
|
|
"./client": {
|
|
"types": "./out/client/index.d.ts",
|
|
"import": "./client/index.js"
|
|
},
|
|
"./plugin": {
|
|
"types": "./out/plugin/index.d.ts",
|
|
"import": "./plugin/index.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"find-free-ports": "^3.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.1",
|
|
"@goauthentik/eslint-config": "../eslint-config",
|
|
"@goauthentik/prettier-config": "../prettier-config",
|
|
"@goauthentik/tsconfig": "../tsconfig",
|
|
"@types/node": "^24.10.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.47.0",
|
|
"@typescript-eslint/parser": "^8.47.0",
|
|
"esbuild": "^0.27.0",
|
|
"eslint": "^9.39.1",
|
|
"pino": "^10.1.0",
|
|
"prettier": "^3.6.2",
|
|
"prettier-plugin-packagejson": "^2.5.19",
|
|
"typedoc": "^0.28.14",
|
|
"typedoc-plugin-markdown": "^4.9.0",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.47.0"
|
|
},
|
|
"peerDependencies": {
|
|
"esbuild": "^0.27.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=24",
|
|
"npm": ">=11.6.2"
|
|
},
|
|
"keywords": [
|
|
"esbuild",
|
|
"live-reload",
|
|
"browser",
|
|
"refresh",
|
|
"reload",
|
|
"authentik"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/goauthentik/authentik.git",
|
|
"directory": "packages/esbuild-plugin-live-reload"
|
|
},
|
|
"types": "./out/index.d.ts",
|
|
"files": [
|
|
"./index.js",
|
|
"client/**/*",
|
|
"plugin/**/*",
|
|
"shared/**/*",
|
|
"out/**/*"
|
|
],
|
|
"prettier": "@goauthentik/prettier-config",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|