PixelAid can produce browser-ready zip artifacts from the Vite editor build. These packages do not publish anything; they only create local files under the ignored artifacts/web/ directory.
npm run web:package:itch
npm run web:package:standaloneBoth commands run the web production build with relative asset paths so the output can be moved between static hosts. The generated files are:
artifacts/web/PixelAid-<version>-web-itch.zip
artifacts/web/PixelAid-<version>-web-standalone.zipEach zip contains the built web app at the archive root:
index.html
assets/
brand/
icons/
LICENSE
NOTICE
LICENSES.md
THIRD_PARTY_NOTICES.md
README.txtThe itch package is intended for an HTML5 project upload, where index.html must be at the zip root. The standalone package is intended for static hosting and can be uploaded to any host that serves the extracted files as a static site.
After packaging, inspect the zip and confirm index.html is at the root:
tar -tf artifacts/web/PixelAid-<version>-web-itch.zip
tar -tf artifacts/web/PixelAid-<version>-web-standalone.zipFor a browser smoke test, run:
npm run build -w @pixelaid/web
npm run preview -w @pixelaid/webThen import an image, run a fix, and export a bundle.