package.json•1.91 kB
{
"name": "mcp-jfrog",
"version": "0.0.1",
"description": "MCP server for using the JFrog Artifactory API",
"license": "Apache-2.0",
"author": "JFrog LTD",
"homepage": "https://github.com/jfrog/mcp-jfrog",
"type": "module",
"bin": {
"mcp-jfrog": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"precommit": "lint-staged"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.12.1",
"@types/node": "^22",
"@types/node-fetch": "^2.6.12",
"axios": "^1.12.0",
"commander": "^11.1.0",
"cors": "^2.8.5",
"express": "^4.18.3",
"node-fetch": "^3.3.2",
"universal-user-agent": "^7.0.2",
"zod": "^3.25.61",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"husky": "^4.3.8",
"jest": "^29.7.0",
"lint-staged": "^10.5.4",
"shx": "^0.3.4",
"ts-jest": "^29.2.6",
"typescript": "^5.6.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
}
}