package.json•1.63 kB
{
"name": "@visaacceptance/mcp",
"version": "0.0.94",
"description": "Visa Acceptance Agent Toolkit with MCP integration for payment services.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/index.js",
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts",
"lint": "eslint . --ext .ts,.js",
"demo": "node dist/demo-server.js",
"test": "jest",
"watch": "tsc --watch",
"test:integration": "ts-node integration-test.ts",
"prepare": "npm run build",
"link": "npm link"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"@types/dotenv": "^6.1.1",
"@visaacceptance/agent-toolkit": "^0.0.94",
"colors": "^1.4.0",
"dotenv": "^16.5.0"
},
"devDependencies": {
"@types/node": "^22.13.4",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.5.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18"
},
"keywords": [
"visa-acceptance",
"agent",
"toolkit",
"mcp",
"model-context-protocol"
],
"author": "Visa Acceptance",
"license": "MIT",
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/**/*.js",
"dist/**/*.d.ts",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/visaacceptance/agent-toolkit"
}
}