package.json•977 B
{
"name": "unlock-mcp",
"version": "1.0.0",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run tests/e2e",
"test:mcp": "npx @modelcontextprotocol/inspector node dist/src/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"ethers": "^6.13.2",
"express": "^4.19.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/node": "^20.14.9",
"typescript": "^5.5.2",
"tsx": "^4.16.2",
"vitest": "^2.0.0",
"@vitest/ui": "^2.0.0",
"@vitest/coverage-v8": "^2.0.0",
"supertest": "^7.0.0",
"@types/supertest": "^6.0.0",
"msw": "^2.0.0"
}
}