@nextnext/mcp-server 0.2.1 → 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/dist/index.js +3112 -43
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nextnext/mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "NextNext MCP Server - A sovereign shopping agent with crypto wallet integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
12
|
-
"README.md"
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
13
14
|
],
|
|
14
15
|
"scripts": {
|
|
15
16
|
"build": "bun build src/index.ts --outdir dist --target node --format esm",
|
|
@@ -54,7 +55,6 @@
|
|
|
54
55
|
"dependencies": {
|
|
55
56
|
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
56
57
|
"@supabase/supabase-js": "^2.89.0",
|
|
57
|
-
"@types/ws": "^8.18.1",
|
|
58
58
|
"@upstash/redis": "^1.36.1",
|
|
59
59
|
"axios": "^1.7.9",
|
|
60
60
|
"nostr-tools": "^2.19.4",
|
|
@@ -67,6 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@types/node": "^24.6.0",
|
|
70
|
+
"@types/ws": "^8.18.1",
|
|
70
71
|
"typescript": "^5.7.0"
|
|
71
72
|
}
|
|
72
73
|
}
|