-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.19 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.19 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
{
"name": "@github/mcp-server-ui",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "MCP App UIs for github-mcp-server using Primer React",
"scripts": {
"build": "npm run build:get-me && npm run build:issue-write && npm run build:pr-write && npm run build:pr-read",
"build:get-me": "cross-env APP=get-me vite build",
"build:issue-write": "cross-env APP=issue-write vite build",
"build:pr-write": "cross-env APP=pr-write vite build",
"build:pr-read": "cross-env APP=pr-read vite build",
"dev": "npm run build",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"@github/markdown-toolbar-element": "^2.2.3",
"@modelcontextprotocol/ext-apps": "^1.0.0",
"@primer/octicons-react": "^19.0.0",
"@primer/react": "^36.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@types/node": "^25.2.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^4.3.0",
"cross-env": "^7.0.3",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vite-plugin-singlefile": "^2.0.0"
}
}