big updat:
All checks were successful
Android Build / publish (push) Successful in 57s
Linux Build / publish (push) Successful in 53s

- update dependencies
- add webp support and webp conversion for profile images
This commit is contained in:
olcxja 2026-07-02 22:40:46 +02:00
commit 95aaaa69ea
244 changed files with 121382 additions and 86 deletions

91
node_modules/super-image-cropper/package.json generated vendored Normal file
View file

@ -0,0 +1,91 @@
{
"name": "super-image-cropper",
"version": "1.0.27",
"description": "A powerful JavaScript image cropping library that supports GIF animations, PNG, JPG and other formats with CropperJS integration. Perfect for web developers who need to crop animated GIFs while preserving animation quality.",
"main": "dist/index.js",
"module": "esm/index.js",
"type": "module",
"types": "esm/index.d.ts",
"keywords": [
"image",
"cropper",
"gif",
"animation",
"crop",
"cropperjs",
"image-processing",
"canvas",
"javascript",
"typescript",
"web",
"browser",
"png",
"jpg",
"jpeg",
"image-editor",
"image-manipulation",
"frontend",
"react",
"vue",
"angular",
"gif-cropper",
"animated-gif",
"image-cropping",
"photo-editor",
"web-components"
],
"homepage": "https://gif-cropper-stdsuperman.vercel.app/",
"bugs": {
"url": "https://github.com/STDSuperman/super-image-cropper/issues"
},
"exports": {
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"esm",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/STDSuperman/super-image-cropper.git"
},
"author": "STDSuperman <2750556766@qq.com>",
"license": "MIT",
"devDependencies": {
"@types/cropperjs": "^1.3.0",
"@types/gif.js": "^0.2.2",
"@types/minimist": "^1.2.2",
"conventional-changelog-cli": "^2.2.2",
"esbuild": "^0.14.23",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"tslib": "^2.4.1",
"typescript": "^4.4.2"
},
"dependencies": {
"cropperjs": "^1.5.12",
"gif.js": "^0.2.0",
"gifuct-js": "^2.1.2",
"image-type": "^4.1.0",
"rollup": "^4.24.0",
"gif-build-worker-js": "1.0.3"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "rollup -c",
"dev": "tsc --watch",
"check": "tsc --noEmit",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
}
}