forked from pixel-agents-hq/pixel-agents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknip.json
More file actions
56 lines (56 loc) · 1.18 KB
/
Copy pathknip.json
File metadata and controls
56 lines (56 loc) · 1.18 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
{
"$schema": "https://unpkg.com/knip@6/schema.json",
"tags": ["-internal"],
"ignoreDependencies": [
"tailwindcss",
"pngjs",
"@types/pngjs",
"fastify",
"@fastify/cors",
"@fastify/static",
"@fastify/websocket"
],
"ignoreExportsUsedInFile": true,
"ignore": [
"core/src/index.ts",
"server/src/providers/hook/claude/hooks/claude-hook.ts",
"webview-ui/src/office/components/index.ts",
"webview-ui/src/office/editor/index.ts",
"webview-ui/src/office/engine/index.ts",
"webview-ui/src/office/layout/index.ts",
"webview-ui/src/office/sprites/index.ts"
],
"workspaces": {
".": {
"entry": [
"e2e/**/*.ts",
"scripts/*.{ts,mjs}"
],
"project": [
"adapters/vscode/**/*.ts",
"core/src/**/*.ts",
"e2e/**/*.ts",
"scripts/**/*.{ts,mjs}"
]
},
"server": {
"entry": [
"src/server.ts",
"src/cli.ts",
"__tests__/**/*.ts"
],
"project": [
"src/**/*.ts",
"__tests__/**/*.ts"
]
},
"webview-ui": {
"entry": [
"test/**/*.ts"
],
"project": [
"src/**/*.{ts,tsx}"
]
}
}
}