fix: search returns wrong results
Some checks are pending
build / build (push) Waiting to run

also migrate to pnpm and some other random changes on and off over the
past 4 months
This commit is contained in:
trafficlunar 2026-07-10 00:20:44 +01:00
parent 43eb8ff31f
commit 620b726cd5
6 changed files with 817 additions and 236 deletions

View file

@ -4,20 +4,20 @@
"private": true,
"type": "module",
"scripts": {
"build": "bun build.ts && spicetify apply",
"build-local": "bun build.ts --local",
"watch": "bun build.ts --watch & spicetify watch -le"
"build": "node build.ts && spicetify apply",
"build-local": "node build.ts --local",
"watch": "node build.ts --watch & spicetify watch -le"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^25.3.3",
"@types/react": "^19.2.14",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"esbuild": "^0.27.3",
"esbuild": "^0.28.1",
"esbuild-css-modules-plugin": "^3.1.5"
},
"dependencies": {
"@jellyfin/sdk": "^0.13.0",
"fuse.js": "^7.1.0"
"fuse.js": "^7.4.2"
}
}