mirror of
https://github.com/goauthentik/authentik
synced 2026-04-25 17:15:26 +02:00
81 lines
2.1 KiB
JSON
81 lines
2.1 KiB
JSON
{
|
|
"name": "@goauthentik/esbuild-plugin-live-reload",
|
|
"version": "1.2.2",
|
|
"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"
|
|
},
|
|
"./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": {
|
|
"@goauthentik/prettier-config": "^3.1.0",
|
|
"@goauthentik/tsconfig": "^1.0.4",
|
|
"@types/node": "^24.3.1",
|
|
"esbuild": "^0.25.9",
|
|
"pino": "^9.9.5",
|
|
"prettier": "^3.6.2",
|
|
"prettier-plugin-packagejson": "^2.5.19",
|
|
"typedoc": "^0.28.12",
|
|
"typedoc-plugin-markdown": "^4.8.1",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"peerDependencies": {
|
|
"esbuild": "^0.25.9"
|
|
},
|
|
"engines": {
|
|
"node": ">=24"
|
|
},
|
|
"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"
|
|
}
|
|
}
|