Project Files
package.json
{
"name": "pixlstash-lmstudio",
"version": "0.5.0",
"description": "LM Studio plugin that illustrates the model's roleplay replies with images from a PixlStash server. The model decides when to call show_pixlstash_image; the plugin runs the semantic search and renders the picture inline.",
"keywords": [
"lmstudio",
"lmstudio-plugin",
"pixlstash",
"roleplay",
"image-search"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test test/*.test.ts",
"clean": "rm -rf dist .lmstudio"
},
"author": "Gaute Lindkvist <lindkvis@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pikselkroken/pixlstash-lmstudio"
},
"homepage": "https://github.com/pikselkroken/pixlstash-lmstudio",
"bugs": {
"url": "https://github.com/pikselkroken/pixlstash-lmstudio/issues"
},
"dependencies": {
"@lmstudio/sdk": "^1.5.0",
"jimp": "^1.6.1",
"undici": "^8.3.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.13.1",
"tsx": "^4.22.3",
"typescript": "^5.7.2"
}
}