package.json
{
"name": "lms-test2-plugin",
"version": "1.0.0",
"description": "LM Studio Plugin - Test 2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsc && node --enable-source-maps dist/index.js",
"build": "tsc"
},
"keywords": [
"lmstudio",
"plugin"
],
"author": "tupik",
"license": "MIT",
"dependencies": {
"@lmstudio/sdk": "^1.0.0",
"execa": "^9.6.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"lms": {
"id": "lms-test2-plugin",
"name": "Memory Saver",
"type": "preprocessor",
"main": "src/index.ts"
}
}