package.json•2.82 kB
{
"name": "@makafeli/n8n-workflow-builder",
"version": "0.10.3",
"description": "Model Context Protocol server for n8n workflow management",
"main": "build/server.cjs",
"module": "./src/index.ts",
"type": "module",
"exports": {
".": {
"import": "./src/index.ts",
"require": "./build/server.cjs"
}
},
"scripts": {
"clean": "rm -rf build build-smithery",
"build": "tsc && npm run build:rename",
"build:rename": "find build -name '*.js' -exec sh -c 'mv \"$1\" \"${1%.js}.cjs\"' _ {} \\;",
"build:smithery": "tsc -p tsconfig.smithery.json",
"dev": "tsc -w",
"start": "node build/server.js",
"prepare": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --testPathPattern=integration",
"test:unit": "jest --testPathPattern=unit",
"test:ci": "jest --config=jest.config.ci.cjs",
"test:ci:coverage": "jest --config=jest.config.ci.cjs --coverage",
"test:core": "jest --testPathIgnorePatterns='credentials.test.ts|tags.test.ts|newWorkflowTools.test.ts'",
"test:mock-errors": "jest --testPathPattern='credentials.test.ts|tags.test.ts|newWorkflowTools.test.ts'"
},
"bin": {
"n8n-workflow-builder": "build/server.cjs"
},
"files": [
"build/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"model-context-protocol",
"n8n",
"workflow",
"automation",
"server",
"ai-assistant",
"claude-desktop",
"chatgpt-integration",
"ai-automation",
"workflow-management",
"api-integration",
"no-code",
"low-code",
"typescript",
"nodejs",
"rest-api",
"webhook",
"mcp-server",
"workflow-builder",
"automation-tools",
"ai-integration"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"axios": "^1.11.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"dotenv": "^17.2.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/makafeli/n8n-workflow-builder.git"
},
"bugs": {
"url": "https://github.com/makafeli/n8n-workflow-builder/issues"
},
"homepage": "https://github.com/makafeli/n8n-workflow-builder#readme",
"author": {
"name": "makafeli",
"email": "yasin@enginebit.com",
"url": "https://github.com/makafeli"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/makafeli"
},
"directories": {
"lib": "./build",
"test": "./tests"
}
}