Feat: Add vite build deps and scripts

This commit is contained in:
2026-03-10 17:59:33 -07:00
parent d740603c75
commit 34b48c2a62

View File

@@ -1,5 +1,19 @@
{
"name": "inzerosight",
"version": "2.1.0",
"private": true
"private": true,
"type": "module",
"scripts": {
"dev": "TARGET=firefox vite",
"build:firefox": "TARGET=firefox vite build",
"build:chrome": "TARGET=chrome vite build",
"build": "bun run build:firefox && bun run build:chrome"
},
"dependencies": {
"zwus": "^2.2.0"
},
"devDependencies": {
"vite": "^6.3.5",
"vite-plugin-web-extension": "^4.4.3"
}
}