mirror of
https://github.com/shadoll/sLogos.git
synced 2025-12-20 09:31:59 +00:00
- Added @resvg/resvg-js dependency for SVG to PNG/JPG conversion. - Implemented pregeneration of PNG and JPG images from SVG files in the scanLogos script. - Enhanced copy URL functionality in App.svelte to support modern clipboard API with fallbacks. - Removed unnecessary onCopy prop from LogoActions component and handled copy actions locally. - Introduced notification system for copy actions with success/error feedback. - Updated styles for action buttons and notifications for better user experience. - Cleaned up unused code and improved overall structure for clarity.
26 lines
720 B
JSON
26 lines
720 B
JSON
{
|
|
"name": "logo-gallery",
|
|
"version": "1.0.0",
|
|
"description": "A collection of company and brand logos accessible via GitHub Pages",
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"dev": "rollup -c -w",
|
|
"start": "sirv public --host 0.0.0.0 --dev --single",
|
|
"scan-logos": "node scripts/scanLogos.js"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^17.0.0",
|
|
"@rollup/plugin-node-resolve": "^11.0.0",
|
|
"rollup": "^2.3.4",
|
|
"rollup-plugin-css-only": "^3.1.0",
|
|
"rollup-plugin-livereload": "^2.0.0",
|
|
"rollup-plugin-svelte": "^7.0.0",
|
|
"rollup-plugin-terser": "^7.0.0",
|
|
"svelte": "3.59.2"
|
|
},
|
|
"dependencies": {
|
|
"@resvg/resvg-js": "^2.0.1",
|
|
"sirv-cli": "^1.0.0"
|
|
}
|
|
}
|