-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "querymesh",
"version": "0.1.0",
"description": "Standalone MCP server for read-only, scope-controlled, audited access to production data across products.",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json && node -e \"require('fs').mkdirSync('dist/store',{recursive:true});require('fs').copyFileSync('src/store/schema.sql','dist/store/schema.sql')\"",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"migrate": "tsx src/cli/migrate.ts",
"issue-key": "tsx src/cli/issue-key.ts",
"add-node": "tsx src/cli/add-node.ts",
"create-admin": "tsx src/cli/create-admin.ts",
"seed": "tsx src/cli/seed.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mongodb": "^6.8.0",
"mysql2": "^3.11.0",
"pino": "^9.3.0",
"prom-client": "^15.1.3",
"yaml": "^2.5.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.14.0",
"tsx": "^4.16.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}