Files
onyx/widget/package.json
dependabot[bot] 28eabdc885 chore(deps): bump esbuild and vite in /widget (#7543)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-28 14:33:37 -08:00

31 lines
702 B
JSON

{
"name": "onyx-chat-widget",
"version": "1.0.0",
"description": "Embeddable chat widget for Onyx",
"type": "module",
"main": "dist/onyx-widget.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build:cloud": "vite build --mode production",
"build:self-hosted": "vite build --mode self-hosted",
"preview": "vite preview",
"type-check": "tsc --noEmit"
},
"dependencies": {
"dompurify": "^3.0.0",
"lit": "^3.1.0",
"marked": "^12.0.0"
},
"devDependencies": {
"@types/dompurify": "^3.0.0",
"@types/node": "^20.0.0",
"typescript": "^5.3.0",
"vite": "^7.3.1"
}
}