build(webui): expose tagged Helpdesk package

This commit is contained in:
2026-08-22 11:48:43 +02:00
parent 32bd55d5bd
commit cad54fcb9a
+28 -2
View File
@@ -1,8 +1,34 @@
{ {
"name": "@govoplan/helpdesk", "name": "@govoplan/helpdesk-webui",
"version": "0.1.20", "version": "0.1.20",
"private": true, "private": true,
"description": "GovOPlaN Helpdesk service-profile and ticket-routing policy module.", "description": "GovOPlaN Helpdesk service-profile and ticket-routing policy module.",
"type": "module", "type": "module",
"peerDependencies": {} "main": "webui/src/index.ts",
"module": "webui/src/index.ts",
"types": "webui/src/index.ts",
"exports": {
".": {
"types": "./webui/src/index.ts",
"import": "./webui/src/index.ts"
},
"./styles/helpdesk.css": "./webui/src/styles/helpdesk.css"
},
"files": [
"webui/src",
"README.md",
"LICENSE"
],
"peerDependencies": {
"@govoplan/core-webui": "^0.1.30",
"lucide-react": "^1.23.0",
"react": ">=19.2.7 <20",
"react-dom": ">=19.2.7 <20",
"react-router": ">=8.3.0 <9"
},
"peerDependenciesMeta": {
"@govoplan/core-webui": {
"optional": true
}
}
} }