-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.31 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
76
77
78
79
80
81
82
83
{
"name": "@brandsystem/mcp",
"version": "0.16.1",
"mcpName": "io.github.Brandcode-Studio/brandsystem-mcp",
"description": "Use existing brand guidelines with AI. This MCP server turns websites, PDFs, and Figma libraries into a portable .brand runtime with design tokens, voice rules, provenance, and compliance checks.",
"type": "module",
"main": "dist/index.js",
"bin": {
"brandsystem-mcp": "bin/brandsystem-mcp.mjs"
},
"scripts": {
"verify:release-metadata": "node tools/check-release-metadata.mjs",
"prebuild": "npm run verify:release-metadata",
"build": "tsc",
"dev": "tsc --watch",
"smoke:hosted-mcp": "node scripts/hosted-mcp-smoke.mjs",
"eval": "node scripts/agent-eval.mjs",
"eval:commit-holdout": "node scripts/holdout-commitment.mjs",
"prestart": "npm run verify:release-metadata",
"start": "node dist/index.js",
"pretest": "npm run verify:release-metadata",
"test": "vitest run",
"test:watch": "vitest",
"prelint": "npm run verify:release-metadata",
"lint": "tsc -p tsconfig.check.json"
},
"engines": {
"node": ">=20.18.1"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.0",
"@upstash/redis": "^1.38.0",
"@vercel/functions": "^3.7.5",
"cheerio": "^1.0.0",
"css-tree": "^3.1.0",
"pdfjs-dist": "^6.1.200",
"puppeteer-core": "^25.3.0",
"yaml": "^2.9.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/css-tree": "^2.3.0",
"@types/node": "^22.19.17",
"pdf-lib": "^1.17.1",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"files": [
"dist",
"!dist/hosted",
"!dist/**/*.map",
"bin/brandsystem-mcp.mjs",
"llms.txt",
"llms-install.md"
],
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"ai-agents",
"agent-tools",
"ai-branding",
"brand-runtime",
"brand-governance",
"claude-design",
"brand-identity",
"brand-guidelines",
"brand-compliance",
"design-tokens",
"design-system",
"visual-identity",
"brand-voice",
"ai-tools",
"brand"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Brandcode-Studio/brandsystem-mcp"
},
"homepage": "https://www.brandcode.studio/mcp",
"bugs": "https://github.com/Brandcode-Studio/brandsystem-mcp/issues"
}