-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 KB
/
package.json
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
{
"name": "groq-mcp-test",
"version": "0.1.0",
"description": "A Model Context Protocol server with Nostr DVM support",
"private": true,
"type": "module",
"bin": {
"groq-mcp-test": "./build/index.js",
"generate-nostr-key": "./build/utils/generate-key.js",
"test-groq-request": "./build/utils/test-request.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc",
"postbuild": "chmod +x build/index.js build/utils/generate-key.js build/utils/test-request.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"generate-key": "node build/utils/generate-key.js",
"test-request": "node build/utils/test-request.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"@noble/curves": "^1.3.0",
"@noble/hashes": "^1.3.3",
"groq-sdk": "^0.9.0",
"nostr-tools": "^2.1.5",
"websocket-polyfill": "^0.0.3",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/ws": "^8.5.10",
"typescript": "^5.3.3"
}
}