package.json•1.34 kB
{
"name": "mcp-workflowy",
"version": "0.0.0-dev",
"description": "MCP server that lets agents talk to Workflowy",
"bin": {
"mcp-workflowy": "dist/index.js"
},
"type": "module",
"module": "./src/index.ts",
"files": [
"dist"
],
"scripts": {
"build": "bun build ./src/index.ts --outdir dist --target node && shx chmod +x dist/index.js",
"test": "bun test",
"prepack": "npm run build",
"start": "node dist/index.js",
"postbuild": "chmod +x dist/index.js"
},
"engines": {
"node": ">=18"
},
"repository": "github:danield137/mcp-workflowy",
"license": "MIT",
"keywords": [
"mcp",
"workflowy",
"agent",
"cli"
],
"bugs": {
"url": "https://github.com/danield137/mcp-workflowy/issues"
},
"homepage": "https://github.com/danield137/mcp-workflowy#readme",
"devDependencies": {
"@types/bun": "1.2.16",
"@types/node": "^22.15.3",
"bun": "^1.2.11",
"nodemon": "^3.1.10",
"shx": "^0.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"@valibot/to-json-schema": "^0.1.0",
"dotenv": "^16.5.0",
"effect": "^3.14.18",
"fastmcp": "^1.23.2",
"workflowy": "^2.8.1"
},
"overrides": {
"cross-spawn": ">=7.0.5",
"brace-expansion": ">=2.0.0"
}
}