package.json•1.29 kB
{
"name": "aci-mcp-server",
"version": "1.0.0",
"description": "MCP server for Cisco ACI (Application Centric Infrastructure) management",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc && node build/index.js",
"clean": "rm -rf build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --testMatch='**/integration/**/*.test.ts'",
"test:mock": "npm run build && node build/test/mock-server.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"keywords": [
"cisco",
"aci",
"apic",
"mcp",
"model-context-protocol",
"automation",
"networking"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"crypto": "^1.0.1",
"https": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.19.25",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"axios": "^1.13.2",
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
}
}