mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-18 11:29:26 +03:00
af5798909f
* web: Fix issue where TypeDoc comments are arranged between imports. * web: Fix Live Reload paths, deps.
75 lines
2.0 KiB
JSON
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"
|
|
}
|
|
}
|