Files
colorshell/package.json
T
retrozinndev 6d6081d530 feat(runner/plugins): implement fuzzy search in wallpapers and clipboard plugins
now the clipboard and the wallpapers runner plugins support fuzzy searching! it's much better than the previous way, as it can match results with characters in-between words and sorted results based on matching score. thanks to fuse.js!
2025-10-25 10:52:44 -03:00

21 lines
683 B
JSON

{
"$schema": "https://www.schemastore.org/package.json",
"name": "colorshell",
"version": "2.0.0",
"packageManager": "pnpm@10.12.1",
"scripts": {
"types": "sh ./scripts/types.sh",
"dev": "sh ./scripts/build.sh -d && sh ./scripts/start.sh",
"start": "sh ./scripts/start.sh",
"clean": "sh ./scripts/clean.sh",
"build": "sh ./scripts/build.sh",
"build:release": "sh ./scripts/release.sh",
"sync-config": "sh ./scripts/sync-config.sh"
},
"devDependencies": {
"ags": "link:../../../../usr/share/ags/js",
"gnim-utils": "github:retrozinndev/gnim-utils",
"fuse.js": "^7.1.0"
}
}