-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.2 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.2 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
{
"name": "sequelae-mcp",
"version": "1.0.0",
"description": "Let Claude, Cursor, and other AI agents run real SQL queries on live Postgres databases. No more copy-pasting SQL, stale schema docs, or hallucinated DB adapters — just raw, real-time access. Now with MCP support!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/davstr1/SeQueLaeMCP.git"
},
"homepage": "https://github.com/davstr1/SeQueLaeMCP#readme",
"bugs": {
"url": "https://github.com/davstr1/SeQueLaeMCP/issues"
},
"author": "",
"license": "MIT",
"keywords": [
"cli",
"postgres",
"sql",
"supabase",
"neon",
"railway",
"cursor",
"cursor.ai",
"claude",
"claude-code",
"claude ai",
"ai agent",
"database cli",
"sql tool",
"vibe coding",
"devtool",
"developer experience",
"automation",
"mcp",
"model-context-protocol"
],
"bin": {
"sequelae": "./bin/sequelae",
"smcp": "./bin/sequelae"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:unit": "jest unit.test.ts",
"test:e2e": "jest e2e.test.ts",
"test:watch": "jest --watch",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' 'tests/**/*.ts' --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run lint && npm run build",
"postinstall": "husky install",
"prepare": "husky install"
},
"dependencies": {
"dotenv": "^16.0.0",
"pg": "^8.16.2"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^24.0.4",
"@types/pg": "^8.10.0",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"husky": "^9.1.7",
"jest": "29.7.0",
"lint-staged": "^16.1.2",
"prettier": "^3.6.1",
"ts-jest": "29.1.0",
"typescript": "^5.0.0"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"tests/**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}