package.json•1.55 kB
{
"name": "mcp_server_for_apache_ofbiz",
"version": "1.0.0",
"description": "A Model Context Protocol (MCP) server for Apache OFBiz",
"keywords": [
"mcp",
"modelcontextprotocol",
"apache",
"ofbiz"
],
"license": "Apache-2.0",
"author": "",
"type": "module",
"files": [
"build"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2",
"express-rate-limit": "^8.2.1",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.2.0",
"node-fetch": "^3.3.2",
"openid-client": "^6.8.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/express-rate-limit": "^5.1.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.2.1",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.7.1",
"rimraf": "^6.1.2",
"typescript": "^5.9.2"
},
"scripts": {
"clean": "rimraf ./build",
"build": "npm run clean && tsc",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier . --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"mcp_server_for_apache_ofbiz-local": "./build/server-local.js",
"mcp_server_for_apache_ofbiz-remote": "./build/server-remote.js"
}
}