-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.77 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
66
67
68
69
70
{
"name": "design-token-bridge-mcp",
"version": "1.0.2",
"mcpName": "io.github.kenneives/design-token-bridge-mcp",
"description": "MCP server that translates design tokens between platforms — Tailwind, Figma, CSS to Material 3, SwiftUI, and CSS Variables",
"type": "module",
"bin": {
"design-token-bridge-mcp": "./build/index.js"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node build/index.js",
"lint": "eslint src/",
"test": "node --experimental-vm-modules node_modules/vitest/vitest.mjs",
"test:e2e": "npx playwright test",
"prepublishOnly": "npm run test && npm run build"
},
"keywords": [
"mcp",
"mcp-server",
"design-tokens",
"design-system",
"figma",
"tailwind",
"material-design",
"material3",
"swiftui",
"liquid-glass",
"css-variables",
"model-context-protocol",
"claude",
"style-dictionary",
"wcag",
"accessibility"
],
"author": "kenneives",
"license": "MIT",
"homepage": "https://github.com/kenneives/design-token-bridge-mcp#readme",
"bugs": {
"url": "https://github.com/kenneives/design-token-bridge-mcp/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kenneives/design-token-bridge-mcp.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}