package.json•2.92 kB
{
"name": "mcp-files",
"version": "1.7.0",
"type": "module",
"description": "Enables agents to quickly find and edit code in a codebase with surgical precision. Find symbols, edit them everywhere",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-files": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:code",
"build:code": "tsup --no-dts",
"build:all": "tsup",
"build:check": "tsc --noEmit",
"build:watch": "npm run build:code -- --watch",
"build:clean": "rimraf dist/* *.tsbuildinfo",
"start": "dist/index.js",
"start:check": "dist/index.js --check",
"start:http": "TRANSPORT=http dist/index.js",
"dev": "npm run build:watch -- --onSuccess \"node dist/index.js\"",
"dev:bg": "rimraf dev.log && npm run dev > dev.log 2>&1",
"cli": "npm run build && npm start --",
"inspect": "npx fastmcp inspect src/index.ts",
"ts": "tsx",
"eslint": "eslint --cache",
"lint": "npm run eslint -- 'src/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"lint:full": "npm run build:check && npm run lint",
"test": "vitest run",
"test:min": "MINIMAL=1 vitest run",
"test:verbose": "npm run test -- --reporter=verbose",
"test:full": "npm run build:clean && npm run lint:full && npm test && npm run build:all && npm run start:check",
"prepack": "npm run test:full",
"publish:dry": "npm pack --dry-run",
"publish:npm": "npm publish",
"publish:docker": "bin/docker-publish.sh",
"publish:test": "cd /tmp && npx mcp-files --help",
"publish:all": "npm run publish:npm && npm run publish:docker && npm run publish:test",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"keywords": [
"mcp",
"cursor",
"claude",
"model-context-protocol",
"code-analysis",
"symbol-search",
"text-replacement",
"import-inspection",
"notifications",
"llm",
"tools",
"files"
],
"author": "Ariel Flesler <aflesler@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/flesler/mcp-files.git"
},
"homepage": "https://github.com/flesler/mcp-files#readme",
"bugs": {
"url": "https://github.com/flesler/mcp-files/issues"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"fast-glob": "^3.3.3",
"fastmcp": "^3.9.0",
"lodash": "^4.17.21",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/lodash": "^4.14.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"types-package-json": "^2.0.39",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}