-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.33 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.33 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": "@pubnub/mcp",
"version": "2.3.2",
"mcpName": "io.github.pubnub/mcp-server",
"description": "PubNub Model Context Protocol MCP Server for Cursor and Claude",
"main": "dist/index.js",
"bin": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/pubnub/pubnub-mcp-server.git"
},
"bugs": "https://github.com/pubnub/pubnub-mcp-server/issues",
"homepage": "https://www.pubnub.com/networking-mcp-server",
"author": "PubNub",
"license": "SEE LICENSE IN LICENSE",
"keywords": [
"PubNub",
"LLM",
"MCP",
"Model Context Protocol"
],
"files": [
"dist",
"images"
],
"engines": {
"node": ">= 20.0.0"
},
"scripts": {
"dev": "rollup -c -w",
"dev:http": "concurrently \"rollup -c -w\" \"node --watch dist/index.js --http\"",
"dev:local": "concurrently \"rollup -c -w\" \"node --watch dist/index.js\"",
"build": "rollup -c && chmod +x dist/index.js",
"start": "node dist/index.js",
"start:http": "node dist/index.js --http",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"lint": "biome lint ./src",
"lint:fix": "biome lint --write ./src",
"format": "biome format --write ./src",
"format:check": "biome format ./src",
"check": "biome check --write ./src",
"test:unit": "vitest run --project unit",
"test:integration": "npm run build && vitest run --project integration",
"test:token-count": "vitest run --project token-count",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:coverage:unit": "vitest --coverage --project unit"
},
"devDependencies": {
"@ai-sdk/mcp": "^0.0.7",
"@ai-sdk/openai": "^2.0.64",
"@biomejs/biome": "2.2.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.1.4",
"@types/express": "^5.0.3",
"@types/node": "^24.3.1",
"@vitest/coverage-v8": "^4.0.6",
"@vitest/ui": "^4.0.6",
"ai": "^5.0.89",
"concurrently": "^8.2.2",
"msw": "^2.11.6",
"rollup": "^4.50.0",
"tiktoken": "^1.0.22",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"vitest": "^4.0.6"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.23.0",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"pubnub": "^10.2.1",
"zod": "^4.1.13"
}
}