package.json•3.72 kB
{
"name": "@sylphlab/filesystem-mcp",
"version": "0.5.9",
"description": "An MCP server providing filesystem tools relative to a project root.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"filesystem-mcp": "./dist/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"engines": {
"node": "22.14"
},
"scripts": {
"build": "bun run clean && tsup",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector dist/index.js",
"test": "vitest run",
"test:watch": "vitest watch",
"test:cov": "vitest run --coverage --reporter=junit --outputFile=test-report.junit.xml",
"lint": "eslint . --ext .ts,.tsx,.vue,.js,.cjs --cache --max-warnings=0",
"lint:fix": "eslint . --ext .ts,.tsx,.vue,.js,.cjs --fix --cache",
"format": "prettier --write . --cache --ignore-unknown",
"check-format": "prettier --check . --cache --ignore-unknown",
"validate": "bun run check-format && bun run lint && bun run typecheck && bun run test",
"docs:dev": "vitepress dev docs",
"docs:build": "bun run docs:api && vitepress build docs",
"docs:preview": "vitepress preview docs",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"benchmark": "vitest bench",
"clean": "rimraf dist coverage",
"docs:api": "node scripts/generate-api-docs.mjs",
"prepublishOnly": "bun run clean && bun run build",
"changeset": "changeset",
"version-packages": "changeset version",
"prepare": "husky"
},
"homepage": "https://github.com/sylphlab/filesystem-mcp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sylphlab/filesystem-mcp.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"filesystem",
"file",
"directory",
"typescript",
"node",
"cli",
"ai",
"agent",
"tool"
],
"author": "Sylph Lab <hi@sylphlab.ai> (https://sylphlab.ai)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sylphlab/filesystem-mcp/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0",
"glob": "^11.0.1",
"zod": "^3.24.2",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@sylphlab/eslint-config-sylph": "^3.3.0",
"@sylphlab/typescript-config": "^0.3.1",
"@types/glob": "^8.1.0",
"@types/node": "^22.14.0",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^3.1.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-import-resolver-typescript": "^3.10.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"rimraf": "^5.0.10",
"standard-version": "^9.5.0",
"typedoc": "^0.28.2",
"typedoc-plugin-markdown": "^4.6.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1",
"uuid": "^11.1.0",
"vitepress": "^1.6.3",
"vitest": "^3.1.1"
},
"lint-staged": {
"*.{ts,tsx,js,cjs}": [
"eslint --fix --cache --max-warnings=0",
"prettier --write --cache --ignore-unknown"
],
"*.{json,md,yaml,yml,html,css}": [
"prettier --write --cache --ignore-unknown"
]
}
}