-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.72 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.72 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
58
59
60
61
62
63
64
65
{
"name": "@rolemodel/optics-mcp",
"version": "0.2.7",
"description": "MCP Server for Optics Design System documentation and token usage with AI-optimized comprehension guide",
"mcpName": "io.github.rolemodel/optics-mcp",
"main": "dist/index.js",
"type": "module",
"bin": {
"optics-mcp": "dist/index.js"
},
"scripts": {
"build": "npx tsc && npm run copy:md",
"copy:md": "find src -name '*.md' | while read file; do mkdir -p \"dist/$(dirname \"${file#src/}\")\" && cp \"$file\" \"dist/${file#src/}\"; done",
"prepare": "npm run build",
"watch": "npx tsc --watch",
"start": "node dist/index.js",
"test": "node dist/test.js",
"test:interactive": "npm run build && node dist/interactive-client.js",
"sync-data": "npx ts-node scripts/sync-optics-data.ts"
},
"keywords": [
"mcp",
"optics",
"design-system",
"design-tokens",
"rolemodel",
"model-context-protocol",
"llm",
"ai"
],
"author": "RoleModel Software",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RoleModel/optics-mcp.git"
},
"bugs": {
"url": "https://github.com/RoleModel/optics-mcp/issues"
},
"homepage": "https://github.com/RoleModel/optics-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@rolemodel/optics": "^2.3.0",
"@types/node": "^20.10.0",
"esbuild": "^0.27.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=24.13.0"
},
"files": [
"dist",
"README.md",
"LICENSE",
"docs/SYSTEM_OVERVIEW.md",
"docs/AI_IMPROVEMENTS.md",
"docs/WARP.md",
"docs/TOOLS.md",
"docs/EXAMPLES.md"
]
}