mirror of
https://github.com/goauthentik/authentik.git
synced 2026-08-30 18:51:39 -07:00
* Fix errant lock entries. * Clean up shared packages. Align workspace catalogs. * Add pnpm workspace. --------- Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com>
107 lines
3.0 KiB
JSON
107 lines
3.0 KiB
JSON
{
|
|
"name": "@goauthentik/esbuild-plugin-live-reload",
|
|
"version": "2.0.3",
|
|
"description": "ESBuild + browser refresh. Build completes, page reloads.",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/goauthentik/authentik.git",
|
|
"directory": "packages/esbuild-plugin-live-reload"
|
|
},
|
|
"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",
|
|
"types": "./out/index.d.ts",
|
|
"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"
|
|
},
|
|
"./client/types": "./client/types.d.ts",
|
|
"./plugin": {
|
|
"types": "./out/plugin/index.d.ts",
|
|
"import": "./plugin/index.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"find-free-ports": "^3.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "catalog:",
|
|
"@goauthentik/eslint-config": "link:../eslint-config",
|
|
"@goauthentik/logger-js": "link:../logger-js",
|
|
"@goauthentik/prettier-config": "link:../prettier-config",
|
|
"@goauthentik/tsconfig": "link:../tsconfig",
|
|
"@types/node": "catalog:",
|
|
"esbuild": "catalog:",
|
|
"eslint": "catalog:",
|
|
"pino": "^10.3.1",
|
|
"prettier": "catalog:",
|
|
"prettier-plugin-packagejson": "catalog:",
|
|
"typedoc": "^0.28.20",
|
|
"typedoc-plugin-markdown": "^4.11.0",
|
|
"typescript": "catalog:",
|
|
"typescript-eslint": "catalog:"
|
|
},
|
|
"peerDependencies": {
|
|
"@goauthentik/logger-js": "^1.0.1",
|
|
"esbuild": "^0.28.1"
|
|
},
|
|
"files": [
|
|
"./index.js",
|
|
"client/**/*",
|
|
"plugin/**/*",
|
|
"shared/**/*",
|
|
"out/**/*"
|
|
],
|
|
"engines": {
|
|
"node": ">=24"
|
|
},
|
|
"devEngines": {
|
|
"runtime": {
|
|
"name": "node",
|
|
"onFail": "warn",
|
|
"version": ">=24"
|
|
},
|
|
"packageManager": {
|
|
"name": "pnpm",
|
|
"version": ">=11.5.1",
|
|
"onFail": "warn"
|
|
}
|
|
},
|
|
"prettier": "@goauthentik/prettier-config",
|
|
"keywords": [
|
|
"esbuild",
|
|
"live-reload",
|
|
"browser",
|
|
"refresh",
|
|
"reload",
|
|
"authentik"
|
|
],
|
|
"peerDependenciesMeta": {
|
|
"@goauthentik/logger-js": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|