package.json•589 B
{
"name": "omi-mcp",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsc",
"start": "node --enable-source-maps ./dist/index.js",
"dev": "concurrently \"tsc --watch\" \"nodemon --watch dist/**/*.js dist/index.js\"",
"test": "node test-mcp-client.js",
"clean": "rm -rf dist",
"rebuild": "npm run clean && npm run build"
},
"devDependencies": {
"@types/node": "^20.12.12",
"concurrently": "^8.2.2",
"nodemon": "^3.1.0",
"typescript": "^5.5.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.1.1",
"dotenv": "^16.4.5",
"zod": "^3.22.4"
}
}