Files
authentik/packages/esbuild-plugin-live-reload/package.json
T
Teffen Ellis af5798909f web: Fix issue where TypeDoc comments are arranged between imports. (#15364)
* web: Fix issue where TypeDoc comments are arranged between imports.

* web: Fix Live Reload paths, deps.
2025-07-02 12:22:20 -04:00

75 lines
2.0 KiB
JSON

{
"name": "@goauthentik/esbuild-plugin-live-reload",
"version": "1.1.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 .",
"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"
},
"./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": {
"@goauthentik/prettier-config": "^3.0.0",
"@goauthentik/tsconfig": "^1.0.4",
"@types/node": "^24.0.10",
"esbuild": "^0.25.5",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.17",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"esbuild": "^0.25.5"
},
"engines": {
"node": ">=22"
},
"keywords": [
"esbuild",
"live-reload",
"browser",
"refresh",
"reload",
"authentik"
],
"repository": {
"type": "git",
"url": "git+https://github.com/goauthentik/authentik.git",
"directory": "web/packages/esbuild-plugin-live-reload"
},
"types": "./out/index.d.ts",
"files": [
"./index.js",
"client/**/*",
"plugin/**/*",
"out/**/*"
],
"prettier": "@goauthentik/prettier-config",
"publishConfig": {
"access": "public"
}
}