Files
liveview/frontend/package.json
Andros Fenollosa 47e9f4142d feat: initial release of django-liveview v0.1.0
- 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)
2025-11-12 14:20:47 +01:00

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"
}