forked from clerk/mcp-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 2.71 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 2.71 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@clerk/mcp-tools",
"version": "0.3.1",
"description": "Tools for writing MCP clients and servers without pain",
"keywords": [
"mcp",
"model",
"context",
"protocol",
"clerk",
"auth"
],
"homepage": "https://github.com/clerk/mcp-tools#readme",
"bugs": {
"url": "https://github.com/clerk/mcp-tools/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clerk/mcp-tools.git"
},
"license": "MIT",
"author": "Jeff Escalante",
"type": "module",
"main": "dist/",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
"./client": {
"import": "./dist/client.js",
"types": "./dist/client.d.ts"
},
"./server": {
"import": "./dist/server.js",
"types": "./dist/server.d.ts"
},
"./next": {
"import": "./dist/next/index.js",
"types": "./dist/next/index.d.ts"
},
"./express": {
"import": "./dist/express/index.js",
"types": "./dist/express/index.d.ts"
},
"./stores": "./dist/stores",
"./stores/fs": {
"import": "./dist/stores/fs.js",
"types": "./dist/stores/fs.d.ts"
},
"./stores/redis": {
"import": "./dist/stores/redis.js",
"types": "./dist/stores/redis.d.ts"
},
"./stores/postgres": {
"import": "./dist/stores/postgres.js",
"types": "./dist/stores/postgres.d.ts"
},
"./stores/sqlite": {
"import": "./dist/stores/sqlite.js",
"types": "./dist/stores/sqlite.d.ts"
}
},
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build",
"watch": "tsup --watch"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0"
},
"devDependencies": {
"@clerk/express": "^1.7.12",
"@clerk/nextjs": "^6.26.0",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.3",
"@types/node": "^24.1.0",
"@types/pg": "^8.15.4",
"better-sqlite3": "^11.10.0",
"next": "^15.4.4",
"pg": "^8.16.3",
"redis": "^5.5.6",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"better-sqlite3": "^8.7.0",
"pg": "^8.11.0",
"redis": "^4.0.0"
},
"peerDependenciesMeta": {
"redis": {
"optional": true
},
"pg": {
"optional": true
},
"better-sqlite3": {
"optional": true
}
},
"tsup": {
"entry": [
"client.ts",
"server.ts",
"next/index.ts",
"express/index.ts",
"stores/fs.ts",
"stores/redis.ts",
"stores/postgres.ts",
"stores/sqlite.ts"
],
"format": [
"esm"
],
"dts": true,
"clean": true,
"external": [
"redis",
"pg",
"better-sqlite3"
]
}
}