-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 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
58
59
60
61
62
63
64
{
"name": "fidgetcoding-refero-mcp",
"version": "0.2.0",
"description": "Bullet-proof MCP for styles.refero.design — natural-language search across the curated DESIGN.md library.",
"type": "module",
"bin": {
"refero-mcp": "./dist/cli.js"
},
"main": "./dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"mcp",
"refero",
"design-system",
"design.md",
"claude",
"agentic-design",
"design-tokens"
],
"author": "Nate Davidovich <nate@lorecraft.io> (Lorecraft LLC)",
"license": "MIT",
"repository": "github:fidgetcoding/refero-design-mcp",
"homepage": "https://github.com/fidgetcoding/refero-design-mcp",
"bugs": {
"url": "https://github.com/fidgetcoding/refero-design-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"optionalDependencies": {
"@rolldown/binding-darwin-arm64": "*",
"@rolldown/binding-darwin-x64": "*",
"@rolldown/binding-linux-arm64-gnu": "*",
"@rolldown/binding-linux-x64-gnu": "*",
"@rolldown/binding-win32-x64-msvc": "*",
"openai": "^4.60.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@vitest/coverage-v8": "^4.1.5",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^4.0.0"
}
}