-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.03 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
{
"name": "mcp-oauth-server",
"version": "0.0.6",
"description": "Self-hosted OAuth 2.1 Authorization Server for MCP servers (Express/TypeScript). Implements the MCP Authorization spec: Client ID Metadata Documents (CIMD), Dynamic Client Registration, PKCE, resource indicators, device flow.",
"main": "dist/index.cjs",
"module": "dist/index.js",
"packageManager": "[email protected]",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"type": "module",
"files": [
"./dist"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc",
"format": "prettier --check ./src ./example",
"build": "rollup -c rollup.config.js",
"example:server": "DEBUG=oauth:* tsx --watch example/index.ts",
"example:client": "tsx --watch node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.js"
},
"author": "wille",
"repository": {
"type": "git",
"url": "git+https://github.com/wille/mcp-oauth-server.git"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.5",
"@types/express-serve-static-core": "^5.1.0",
"@types/node": "^22.19.1",
"prettier": "^3.6.2",
"rollup": "^4.53.3",
"supertest": "^7.2.2",
"tslib": "^2.8.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.10"
},
"peerDependencies": {
"express": ">=4",
"express-rate-limit": ">=7.5"
},
"dependencies": {
"debug": "^4.4.3",
"pkce-challenge": "^5.0.1",
"zod": "^4.1.13"
},
"keywords": [
"mcp",
"ai",
"oauth2",
"oauth",
"oauth2.1",
"server",
"authorization-server",
"pkce",
"device-flow",
"cimd",
"express",
"mcp-server",
"mcp-authorization",
"dynamic-client-registration",
"modelcontextprotocol"
]
}