-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "@alecpapierniak/mcp-manager",
"version": "0.1.2",
"description": "Manage MCP servers for your Claude projects",
"author": "Alec Papierniak <alec@papierniak.net>",
"bin": {
"mcp-manager": "./bin/cli.js",
"@alecpapierniak/mcp-manager": "./bin/cli.js"
},
"files": [
"bin/",
".next/build/",
".next/server/",
".next/static/",
".next/*.json",
".next/BUILD_ID",
".next/package.json",
"public/",
"next.config.mjs"
],
"scripts": {
"dev": "next dev -p 33239 --turbopack",
"build": "next build",
"start": "next start -p 33239",
"prepare": "next build",
"lint": "eslint",
"e2e": "playwright test --reporter=list",
"e2e:video": "playwright test --reporter=list --video=on",
"e2e:desktop": "playwright test --project=chromium-desktop --reporter=list",
"e2e:mobile": "playwright test --project=chromium-mobile --reporter=list"
},
"dependencies": {
"next": "16.1.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"@tanstack/react-query": "5.80.7"
},
"devDependencies": {
"@tailwindcss/postcss": "4.1.18",
"@types/node": "20.19.27",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"eslint": "9.39.2",
"eslint-config-next": "16.1.1",
"tailwindcss": "4.1.18",
"typescript": "5.9.3",
"@playwright/test": "1.52.0"
}
}