-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.81 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.81 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
{
"name": "iris-mcp-server",
"version": "0.1.0",
"description": "Iris MCP Gateway - Multi-backend MCP server for Google Drive write, Notion, and more",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"build:oauth": "tsc --skipLibCheck src/oauth-server.ts src/oauth/*.ts src/backends/google-drive.ts --outDir dist --module ESNext --target ES2022 --moduleResolution node --esModuleInterop",
"build:http": "tsc --skipLibCheck src/http-server.ts src/backends/*.ts src/utils/*.ts --outDir dist --module ESNext --target ES2022 --moduleResolution node --esModuleInterop",
"dev": "tsc --watch",
"start": "node dist/index.js",
"oauth": "node dist/oauth-server.js",
"http": "node dist/http-server.js",
"dev:oauth": "npm run build:oauth && node dist/oauth-server.js",
"dev:http": "npm run build:http && node dist/http-server.js",
"setup:browser": "node iris-setup-browser",
"test": "echo \"No tests yet\" && exit 0"
},
"keywords": [
"mcp",
"model-context-protocol",
"google-drive",
"notion",
"iris"
],
"author": "Jerry Jackson (Uncle Tallest)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/continuity-bridge/iris-mcp-server.git"
},
"bugs": {
"url": "https://github.com/continuity-bridge/iris-mcp-server/issues"
},
"homepage": "https://github.com/continuity-bridge/iris-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^11.10.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"googleapis": "^144.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"typescript": "^5.5.4"
}
}