mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 10:45:57 +00:00
- Add vite-plugin-solid to procrastination-buster plugin dependencies - Wrap Uint8Array in Blob for fetch body to fix TypeScript error with newer @types/node
28 lines
781 B
JSON
28 lines
781 B
JSON
{
|
|
"name": "procrastination-buster-plugin",
|
|
"version": "1.0.0",
|
|
"description": "Procrastination Buster plugin for Super Productivity",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"typecheck": "tsc --noEmit",
|
|
"deploy": "npm run build",
|
|
"clean": "rm -rf dist node_modules *.zip",
|
|
"lint": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@solidjs/router": "^0.14.10",
|
|
"@super-productivity/vite-plugin": "file:../../vite-plugin",
|
|
"@types/node": "^22.15.33",
|
|
"archiver": "^7.0.1",
|
|
"solid-js": "^1.9.7",
|
|
"typescript": "^5.8.3",
|
|
"vite": "^7.2.0",
|
|
"vite-plugin-solid": "^2.11.10"
|
|
},
|
|
"dependencies": {
|
|
"@super-productivity/plugin-api": "file:../../plugin-api"
|
|
}
|
|
}
|