package.json•1.13 kB
{
"name": "lsp-tools",
"version": "0.1.0",
"description": "MCP server for LSP-like text processing tools",
"license": "MIT",
"type": "module",
"bin": {
"lsp-tools": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"pretest": "npm run clean",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"lint": "eslint src/**/*.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.6.1",
"diff": "^7.0.0",
"minimatch": "^10.0.1",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@types/diff": "^7.0.1",
"@types/jest": "^29.5.11",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"eslint": "^9.22.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}