super-productivity/packages/plugin-dev/procrastination-buster/package.json
Johannes Millan 78bdbcf481 fix(plugin): resolve empty panel issue in procrastination-buster
- Add base: './' to Vite config for relative asset paths
- Update post-build.js regex to handle both absolute and relative paths
- Ensure proper asset inlining for plugin HTML delivery
2025-06-24 21:04:37 +02:00

22 lines
676 B
JSON

{
"name": "procrastination-buster-plugin",
"version": "1.0.0",
"description": "Procrastination Buster plugin for Super Productivity",
"scripts": {
"dev": "vite",
"watch": "vite build --watch",
"build": "vite build && node scripts/post-build.js",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"package": "npm run build && cd dist && zip -r plugin.zip *"
},
"devDependencies": {
"@solidjs/router": "^0.10.0",
"@super-productivity/plugin-api": "file:../../plugin-api",
"solid-js": "^1.8.0",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vite-plugin-singlefile": "^2.2.0",
"vite-plugin-solid": "^2.8.0"
}
}