@vibevibes/mcp 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,33 +1,59 @@
1
- {
2
- "name": "@vibevibes/mcp",
3
- "version": "0.2.0",
4
- "description": "MCP server for joining vibevibes experiences — local or remote",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "bin": {
9
- "vibevibes-mcp": "./bin/cli.js"
10
- },
11
- "scripts": {
12
- "build": "tsc",
13
- "prepublishOnly": "npm run build",
14
- "dev": "tsx src/index.ts"
15
- },
16
- "dependencies": {
17
- "@modelcontextprotocol/sdk": "^1.9.0",
18
- "zod": "^3.22.4"
19
- },
20
- "devDependencies": {
21
- "tsx": "^4.7.0",
22
- "typescript": "^5.3.3",
23
- "@types/node": "^20.11.5"
24
- },
25
- "files": [
26
- "dist",
27
- "bin"
28
- ],
29
- "publishConfig": {
30
- "access": "public"
31
- },
32
- "license": "MIT"
33
- }
1
+ {
2
+ "name": "@vibevibes/mcp",
3
+ "version": "0.3.0",
4
+ "description": "MCP server + runtime engine for vibevibes experiences",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "vibevibes-mcp": "./bin/cli.js",
10
+ "vibevibes-serve": "./bin/serve.js"
11
+ },
12
+ "scripts": {
13
+ "build": "tsc && tsc -p tsconfig.hooks.json && node -e \"const{cpSync}=require('fs');cpSync('src/viewer','dist/viewer',{recursive:true})\"",
14
+ "postinstall": "node ./bin/postinstall.js",
15
+ "prepublishOnly": "npm run build",
16
+ "dev": "tsx src/index.ts"
17
+ },
18
+ "dependencies": {
19
+ "@modelcontextprotocol/sdk": "^1.9.0",
20
+ "@vibevibes/sdk": "^0.3.0",
21
+ "esbuild": "^0.27.2",
22
+ "express": "^4.18.2",
23
+ "ws": "^8.19.0",
24
+ "zod": "^3.22.4",
25
+ "zod-to-json-schema": "^3.22.4"
26
+ },
27
+ "devDependencies": {
28
+ "@types/express": "^4.17.21",
29
+ "@types/node": "^20.11.5",
30
+ "@types/ws": "^8.18.1",
31
+ "tsx": "^4.7.0",
32
+ "typescript": "^5.3.3"
33
+ },
34
+ "files": [
35
+ "dist",
36
+ "bin",
37
+ "hooks"
38
+ ],
39
+ "publishConfig": {
40
+ "access": "public"
41
+ },
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "https://github.com/vibevibes/mcp"
45
+ },
46
+ "homepage": "https://github.com/vibevibes/mcp#readme",
47
+ "author": "EgemennSahin",
48
+ "license": "MIT",
49
+ "keywords": [
50
+ "vibevibes",
51
+ "mcp",
52
+ "model-context-protocol",
53
+ "multiplayer",
54
+ "ai-native",
55
+ "shared-experience",
56
+ "real-time",
57
+ "websocket"
58
+ ]
59
+ }