forked from zueai/mcp-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.5 KB
/
package.json
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
{
"name": "mcp-manager",
"private": true,
"version": "0.0.0",
"main": "./dist-electron/main.js",
"scripts": {
"dev": "vite --port 7777",
"check": "tsc --noEmit && biome check --write .",
"build": "npm run check && vite build",
"lint": "eslint .",
"preview": "vite preview",
"electron:dev": "cross-env DEBUG=vite-plugin-electron* ELECTRON_DISABLE_SECURITY_WARNINGS=true VITE_DEV_SERVER_URL=http://localhost:7777 concurrently -k \"vite --port 7777\" \"wait-on tcp:7777 && tsc -p electron/tsconfig.json -w\" \"wait-on -d 1000 tcp:7777 && electron .\"",
"clean": "rimraf dist dist-electron",
"prebuild": "npm run clean",
"predev": "npm run clean"
},
"dependencies": {
"lucide-react": "^0.468.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"rimraf": "^5.0.5",
"@biomejs/biome": "^1.9.4",
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"daisyui": "^4.12.22",
"electron": "^29.4.6",
"electron-builder": "^24.13.3",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "~5.6.3",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.5",
"vite-plugin-electron": "^0.28.8",
"vite-plugin-electron-renderer": "^0.14.6",
"wait-on": "^7.2.0"
}
}