package.json.monorepo•755 B
{
"name": "monorepo-for-salesforce-mcp-server-and-providers",
"private": true,
"license": "Apache-2.0",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**"
]
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.15.0",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"rimraf": "^6.0.1"
},
"overrides": {
"@salesforce/core": "^8.22.0"
},
"scripts": {
"build": "yarn workspaces run build",
"clean": "yarn workspaces run clean",
"clean-all": "yarn workspaces run clean-all && rimraf node_modules",
"lint": "yarn workspaces run lint",
"package": "yarn workspaces run package",
"test": "yarn workspaces run test"
}
}