package.json•1.79 kB
{
"name": "file-operations-server",
"version": "1.0.0",
"description": "MCP server for file operations with enhanced capabilities",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"start:http": "node build/index.js --http",
"dev": "ts-node-esm src/index.ts",
"dev:http": "ts-node-esm src/index.ts --http",
"watch": "tsc -w",
"clean": "rimraf build",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"file-operations",
"streaming",
"patch",
"watch"
],
"author": "Brian W. Smith",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.5.0",
"diff": "^5.1.0",
"express": "^4.19.2",
"glob": "^10.3.10",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@types/diff": "^5.0.9",
"@types/express": "^4.17.21",
"@types/glob": "^8.1.0",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"types": "./build/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/bsmi021/file-operations-server.git"
},
"bugs": {
"url": "https://github.com/bsmi021/file-operations-server/issues"
},
"homepage": "https://github.com/bsmi021/file-operations-server#readme"
}