-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathknip.json
More file actions
46 lines (46 loc) · 1.15 KB
/
knip.json
File metadata and controls
46 lines (46 loc) · 1.15 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
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"tags": [
"-lintignore"
],
"workspaces": {
".": {
"entry": [
"package.json",
"scripts/**/*.{js,mjs,cjs,ts,mts,cts}"
],
"project": [
"scripts/**/*.{js,mjs,cjs,ts,mts,cts}"
]
},
"packages/app": {
"entry": [
"src/server/stdio.ts",
"src/server/streamableHttp.ts",
"src/server/streamableHttpJson.ts",
"src/web/main.tsx",
"src/web/mcp-welcome.tsx",
"src/web/gradio-widget.tsx",
"src/web/gradio-widget-dev.tsx",
"src/web/index.html",
"src/web/mcp-welcome.html",
"src/web/gradio-widget.html",
"src/web/gradio-widget-dev.html"
],
"project": [
"src/**/*.{js,mjs,cjs,jsx,ts,tsx,mts,cts,html,css,svg}",
"scripts/**/*.{js,mjs,cjs,jsx,ts,tsx,mts,cts}",
"vite.config.{js,mjs,cjs,ts,mts,cts}"
],
"ignoreDependencies": [
"pino-pretty"
]
},
"packages/mcp": {
"project": [
"src/**/*.{js,mjs,cjs,jsx,ts,tsx,mts,cts}",
"test/**/*.{js,mjs,cjs,jsx,ts,tsx,mts,cts}"
]
}
}
}