-
Notifications
You must be signed in to change notification settings - Fork 661
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.52 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.52 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
{
"name": "@primer/mcp",
"description": "An MCP server that connects AI tools to the Primer Design System",
"version": "0.3.1",
"type": "module",
"bin": {
"mcp": "./bin/mcp.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./transports/stdio": {
"types": "./dist/transports/stdio.d.ts",
"default": "./dist/stdio.js"
}
},
"files": [
"bin",
"dist",
"src",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/primer/react.git"
},
"scripts": {
"clean": "rimraf dist",
"build": "rollup -c",
"type-check": "tsc --noEmit",
"watch": "rollup -c -w"
},
"dependencies": {
"@babel/runtime": "^7.28.6",
"@modelcontextprotocol/sdk": "^1.24.0",
"@primer/octicons": "^19.15.5",
"@primer/primitives": "10.x || 11.x",
"@primer/react": "^38.15.0",
"cheerio": "^1.0.0",
"turndown": "^7.2.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@modelcontextprotocol/inspector": "^0.16.6",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/turndown": "^5.0.5",
"rimraf": "^6.0.1",
"rollup": "^4.59.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.9.2"
}
}