-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.92 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
71
72
73
74
75
{
"name": "systembridge-mcp",
"version": "1.0.3",
"description": "System Bridge MCP Server — token management, transformation, validation, and evolution",
"main": "dist/index.js",
"bin": {
"systembridge-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"watch": "tsc --watch",
"interactive": "tsx scripts/interactive.ts",
"benchmark": "tsx scripts/benchmark.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"design-system",
"design-tokens",
"style-dictionary"
],
"author": "Tasos Dervenagas",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/teyepe/systembridge-mcp.git"
},
"homepage": "https://github.com/teyepe/systembridge-mcp#readme",
"bugs": {
"url": "https://github.com/teyepe/systembridge-mcp/issues"
},
"engines": {
"node": ">=18.0.0"
},
"type": "commonjs",
"overrides": {
"minimatch": "^10.2.1"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"colorjs.io": "^0.6.1",
"fast-glob": "^3.3.3",
"glob": "^13.0.4",
"json5": "^2.2.3",
"style-dictionary": "^5.4.0",
"yaml": "^2.8.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"semantic-release": "^25.0.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vitest": "^4.0.18"
}
}