-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.5 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.5 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
{
"name": "db-mcp",
"version": "1.1.1",
"description": "SQLite MCP server with OAuth 2.1 authentication, HTTP/SSE transport, and smart tool filtering",
"mcpName": "io.github.neverinfamous/db-mcp",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"db-mcp": "./dist/cli.js"
},
"scripts": {
"build": "tsup",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"start:stdio": "node dist/cli.js --transport=stdio",
"start:http": "node dist/cli.js --transport=http",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:json": "eslint . --format json --output-file eslint-results.json",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"bench": "vitest bench --run",
"bench:verbose": "vitest bench --run --reporter=verbose",
"clean": "rimraf dist",
"generate:instructions": "node scripts/generate-server-instructions.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"database",
"sqlite",
"oauth",
"ai",
"llm"
],
"author": "neverinfamous",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/neverinfamous/db-mcp.git"
},
"bugs": {
"url": "https://github.com/neverinfamous/db-mcp/issues"
},
"homepage": "https://github.com/neverinfamous/db-mcp#readme",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"cors": "^2.8.5",
"express": "^5.2.1",
"jose": "^6.2.1",
"sql.js": "^1.14.1",
"zod": "^3.25.0 || ^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.4.0",
"@types/sql.js": "^1.4.9",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"rimraf": "^6.1.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vitest": "^4.0.17"
},
"peerDependencies": {
"zod": "^3.25.0 || ^4.0.0"
},
"optionalDependencies": {
"better-sqlite3": "^12.8.0"
},
"overrides": {
"diff": "8.0.3",
"@isaacs/brace-expansion": "5.0.1",
"tar": "7.5.11",
"minimatch": "10.2.4"
}
}