-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.59 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.59 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
{
"name": "mcp-divoom-lan",
"version": "0.1.2",
"mcpName": "io.github.DivoomDevelop/mcp-divoom-lan",
"description": "MCP server for Divoom LAN watchface customization",
"repository": {
"type": "git",
"url": "git+https://github.com/DivoomDevelop/mcp-divoom-lan.git"
},
"bugs": {
"url": "https://github.com/DivoomDevelop/mcp-divoom-lan/issues"
},
"homepage": "https://github.com/DivoomDevelop/mcp-divoom-lan#readme",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-divoom-lan": "dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json && node scripts/prepend-shebang.mjs",
"dev": "tsc -p tsconfig.json --watch",
"start": "node dist/index.js",
"check": "tsc -p tsconfig.json --noEmit",
"release:check": "npm run check && npm run build && npm pack --dry-run",
"prepack": "npm run build",
"mcpb:staging": "node scripts/build-mcpb.mjs",
"mcpb:validate": "npx --yes @anthropic-ai/mcpb validate mcpb/staging",
"mcpb:pack": "npm run build && npm run mcpb:staging && npm run mcpb:validate && npx --yes @anthropic-ai/mcpb pack mcpb/staging mcp-divoom-lan.mcpb"
},
"files": [
"dist",
"README.md",
"docs",
"resources",
"client-config.example.json",
"LICENSE"
],
"keywords": [
"mcp",
"divoom",
"watchface",
"lan",
"model-context-protocol"
],
"author": "Divoom Developers",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0"
},
"devDependencies": {
"@types/node": "^24.3.0",
"typescript": "^5.9.2"
}
}