package.json•1.65 kB
{
"name": "local-history-mcp",
"version": "1.1.2",
"description": "MCP server for accessing VS Code/Cursor Local History",
"main": "dist/index.cjs",
"bin": {
"local-history-mcp": "dist/index.cjs"
},
"type": "module",
"scripts": {
"build": "node esbuild.mjs && chmod +x dist/index.cjs",
"build:tsc": "tsc",
"start": "node dist/index.cjs",
"dev": "tsx src/index.ts",
"clean": "rm -rf dist",
"lint": "biome check --write src/ test/",
"test": "node --experimental-strip-types --test test/**/*.test.ts",
"inspector": "pnpm dlx @modelcontextprotocol/inspector node dist/index.cjs",
"prepublishOnly": "pnpm clean && pnpm build && pnpm test",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"keywords": [
"mcp",
"vscode",
"cursor",
"local-history",
"data-recovery",
"ai-assistant"
],
"author": "Antoni Kępiński",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xxczaki/local-history-mcp.git"
},
"homepage": "https://github.com/xxczaki/local-history-mcp#readme",
"bugs": {
"url": "https://github.com/xxczaki/local-history-mcp/issues"
},
"engines": {
"node": ">=22.20.0"
},
"packageManager": "pnpm@10.17.1",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.1",
"@types/node": "^24.5.2",
"pino": "^9.11.0",
"typescript": "^5.9.2"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@changesets/cli": "^2.29.7",
"esbuild": "^0.25.10",
"pino-pretty": "^13.1.1",
"tsx": "^4.20.5"
}
}