package.json
{
"name": "filesystem",
"version": "0.0.1",
"description": "Filesystem tools for LM Studio: read, list, glob, grep, create, and edit",
"main": "index.js",
"scripts": {
"dev": "lms dev",
"install:local": "node scripts/install-local.js --yes",
"push": "node scripts/push.js",
"test": "vitest run",
"typecheck": "npx tsc --noEmit",
"e2e-read": "bash scripts/e2e-read.sh",
"e2e-list": "bash scripts/e2e-list.sh",
"e2e-glob": "bash scripts/e2e-glob.sh",
"e2e-grep": "bash scripts/e2e-grep.sh"
},
"author": "Lucas",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/that-lucas/lms-plugin-filesystem.git"
},
"dependencies": {
"@lmstudio/sdk": "^1.4.0",
"minimatch": "^10.0.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^20.14.8",
"typescript": "^5.8.2",
"vitest": "^4.0.18"
}
}