mirror of
https://github.com/Django-LiveView/liveview
synced 2026-01-09 14:53:38 +01:00
- Core decorator-based handler system - WebSocket consumer with auto-discovery - JavaScript client with automatic reconnection - Stimulus controller for page interactions - Intersection Observer support - Broadcast support for multi-user updates - Complete documentation and examples - Bundled JavaScript assets (minified)
29 lines
622 B
JSON
29 lines
622 B
JSON
{
|
|
"name": "django-liveview-frontend",
|
|
"version": "0.1.0",
|
|
"description": "Frontend assets for Django LiveView",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"build:min": "rollup -c --environment BUILD:production",
|
|
"watch": "rollup -c -w"
|
|
},
|
|
"dependencies": {
|
|
"@hotwired/stimulus": "^3.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"rollup": "^4.9.6"
|
|
},
|
|
"keywords": [
|
|
"django",
|
|
"liveview",
|
|
"websockets",
|
|
"stimulus",
|
|
"realtime"
|
|
],
|
|
"author": "Andros Fenollosa",
|
|
"license": "MIT"
|
|
}
|