5439af1955
- Add Gitea Actions workflows: test.yml (lint + test on push/PR) and release.yml (build + NSIS installer + upload on v* tags) - Add NSIS installer with optional desktop shortcut and auto-start - Add esbuild bundler: ES module migration with IIFE bundle output - Add build-dist-windows.sh for cross-building Windows distribution - Fix all ruff lint errors (import sorting, unused imports, line length) - Remove redundant scripts (start-server.bat, stop-server.bat, start-server-background.vbs) - Update CLAUDE.md with CI/CD and release documentation
14 lines
291 B
JSON
14 lines
291 B
JSON
{
|
|
"name": "media-server-frontend",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Frontend build tooling for media server WebUI",
|
|
"scripts": {
|
|
"build": "node esbuild.mjs",
|
|
"watch": "node esbuild.mjs --watch"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild": "^0.27.4"
|
|
}
|
|
}
|