-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.05 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
{
"name": "@lightningpolar/mcp",
"version": "1.0.0",
"description": "Model Context Protocol (MCP) server for Lightning Polar - enables LLMs to interact with Polar networks",
"type": "module",
"main": "dist/index.js",
"bin": {
"polar-mcp": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch"
},
"keywords": [
"mcp",
"model-context-protocol",
"polar",
"lightning",
"bitcoin",
"llm",
"ai"
],
"author": {
"name": "jamaljsr",
"email": "contact@lightningpolar.com",
"url": "https://lightningpolar.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamaljsr/polar-mcp.git"
},
"homepage": "https://lightningpolar.com",
"bugs": {
"url": "https://github.com/jamaljsr/polar-mcp/issues"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0"
},
"devDependencies": {
"@types/node": "^18.17.19",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"README.md"
]
}