-
-
Notifications
You must be signed in to change notification settings - Fork 177
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.6 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "unla-dashboard",
"private": true,
"version": "0.9.0",
"type": "module",
"description": "Unla Dashboard - A modern web interface for managing MCP Gateway services",
"keywords": [
"mcp",
"gateway",
"dashboard",
"react",
"typescript"
],
"homepage": "https://github.com/amoylab/unla#readme",
"bugs": {
"url": "https://github.com/amoylab/unla/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"author": {
"name": "Leo",
"url": "https://github.com/ifuryst"
},
"repository": {
"type": "git",
"url": "https://github.com/amoylab/unla.git"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"packageManager": "pnpm@9.15.0",
"pnpm": {
"overrides": {
"rollup": "4.24.0"
}
},
"dependencies": {
"@heroui/react": "2.7.11",
"@iconify/react": "latest",
"@modelcontextprotocol/sdk": "^1.12.1",
"@monaco-editor/react": "^4.7.0",
"@types/uuid": "^10.0.0",
"axios": "^1.8.4",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.11.13",
"framer-motion": "^11.18.2",
"highlight.js": "^11.11.1",
"i18next": "^25.2.1",
"i18next-browser-languagedetector": "^8.1.0",
"js-yaml": "^4.1.0",
"katex": "^0.16.22",
"lucide-react": "^0.542.0",
"monaco-editor": "^0.52.2",
"monaco-yaml": "^5.4.0",
"react": "^18.3.1",
"react-diff-viewer-continued": "^3.4.0",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.8",
"react-i18next": "^15.5.2",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.30.1",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"uuid": "^11.1.0",
"zod": "^3.25.46"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.3",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "10.4.20",
"eslint": "^9.24.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"postcss": "8.4.49",
"rollup": "4.24.0",
"tailwindcss": "3.4.17",
"typescript": "5.7.3",
"vite": "^7.0.4"
}
}