mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
d86b5e7c8a
* web: Move non-workspace package. * web: Update ESBuild package version. * web: Use NPM link to alias local package. * web: Update lock. * web: Fix regression where bundler is expected.
76 lines
2.0 KiB
JSON
76 lines
2.0 KiB
JSON
{
|
|
"name": "@goauthentik/esbuild-plugin-live-reload",
|
|
"version": "1.0.6",
|
|
"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": "^1.0.5",
|
|
"@goauthentik/tsconfig": "^1.0.4",
|
|
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
"@types/node": "^22.15.21",
|
|
"esbuild": "^0.25.5",
|
|
"prettier": "^3.5.3",
|
|
"prettier-plugin-packagejson": "^2.5.14",
|
|
"typedoc": "^0.28.5",
|
|
"typedoc-plugin-markdown": "^4.6.3",
|
|
"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"
|
|
}
|
|
}
|