-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.32 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
{
"name": "@node2flow/sqlite-mcp",
"version": "2.0.1",
"description": "MCP server for SQLite databases — local files (better-sqlite3) or remote Turso/libSQL via URL. 15 tools for query, schema, indexes, and optimization",
"keywords": [
"sqlite",
"turso",
"libsql",
"mcp",
"model-context-protocol",
"database",
"sql",
"ai",
"claude",
"cursor"
],
"author": "Node2Flow <node2flow@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/node2flow-th/sqlite-mcp-community",
"repository": {
"type": "git",
"url": "https://github.com/node2flow-th/sqlite-mcp-community.git"
},
"type": "module",
"main": "dist/index.js",
"module": "./src/index.ts",
"types": "dist/index.d.ts",
"bin": {
"sqlite-mcp": "dist/index.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@libsql/client": "^0.14.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"better-sqlite3": "^11.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"wrangler": "^4.0.0"
},
"engines": {
"node": ">=18"
}
}