-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.93 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.93 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "omnisql-mcp",
"version": "2.0.1",
"description": "Universal database MCP server — native drivers for PostgreSQL, MySQL, SQLite, SQL Server with CLI fallback, reading connections from your local DB client workspace",
"main": "dist/index.js",
"type": "module",
"bin": {
"omnisql-mcp": "dist/index.js"
},
"files": [
"dist/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc && echo '#!/usr/bin/env node' > dist/index.js.tmp && cat dist/index.js >> dist/index.js.tmp && mv dist/index.js.tmp dist/index.js && shx chmod +x dist/index.js",
"dev": "tsc --watch",
"start": "node dist/index.js",
"clean": "rimraf dist",
"prepare": "husky",
"prepublish": "npm run clean && npm run build",
"watch": "tsc --watch",
"example": "node examples/example.js",
"bump": "bumpp",
"bump:patch": "bumpp patch",
"bump:minor": "bumpp minor",
"bump:major": "bumpp major",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish",
"publish": "echo 'Use ./scripts/publish.sh or npm run publish:patch/minor/major instead'",
"prepublishOnly": "npm run clean && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"mcp",
"model-context-protocol",
"database",
"sql",
"claude",
"anthropic",
"cursor",
"ai",
"postgresql",
"mysql",
"oracle",
"sqlserver",
"sqlite",
"mongodb",
"database-tools",
"ai-assistant",
"database-connectivity",
"universal-database"
],
"author": "Sarthak Jain",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"csv-parser": "^3.0.0",
"csv-stringify": "^6.4.6",
"mssql": "^12.2.0",
"mysql2": "^3.16.0",
"pg": "^8.13.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/mssql": "^9.1.8",
"@types/node": "^20.0.0",
"@types/pg": "^8.11.6",
"@types/xml2js": "^0.4.14",
"@vitest/coverage-v8": "^4.0.17",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"rimraf": "^5.0.5",
"shx": "^0.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.53.0",
"vitest": "^4.0.17"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/srthkdev/omnisql-mcp.git"
},
"bugs": {
"url": "https://github.com/srthkdev/omnisql-mcp/issues"
},
"homepage": "https://github.com/srthkdev/omnisql-mcp#readme"
}