agent-ecosystem/knip.json
matt da1a8998fc chore: clean up project configuration and remove unused dependencies
- Updated knip.json to exclude unused Remotion paths and dependencies.
- Cleaned up pnpm-lock.yaml by removing obsolete Remotion packages.
- Refactored TypeScript function signatures in main files for improved clarity.
- Enhanced various components for better code readability and maintainability.
2026-02-16 23:27:43 +09:00

20 lines
517 B
JSON

{
"$schema": "https://unpkg.com/knip@next/schema.json",
"entry": [
"src/main/index.ts",
"src/main/standalone.ts",
"src/preload/index.ts",
"src/renderer/main.tsx",
"electron.vite.config.ts",
"vite.standalone.config.ts"
],
"project": ["src/**/*.{ts,tsx}!"],
"ignore": ["tsconfig*.json"],
"paths": {
"@main/*": ["./src/main/*"],
"@renderer/*": ["./src/renderer/*"],
"@preload/*": ["./src/preload/*"],
"@shared/*": ["./src/shared/*"]
},
"ignoreBinaries": ["pkg"]
}