mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
Knip-driven cleanup across all workspaces: Removed (verified zero imports): - root: @anthropic-ai/claude-agent-sdk, @modelcontextprotocol/sdk, expo, react, react-native, react-dom (duplicates of workspace deps) - server: @ai-sdk/openai, @deepgram/sdk, express-basic-auth, fast-uri, mnemonic-id, tiny-invariant, playwright - app: @expo/vector-icons, @getpaseo/server, @react-navigation/bottom-tabs, @react-navigation/elements, base64-js, react-native-css, expo-av, expo-font, expo-symbols, expo-web-browser, react-native-permissions, react-native-popover-view, react-native-securerandom - cli: @getpaseo/relay - desktop: @getpaseo/cli - relay: @cloudflare/workers-types - website: tailwindcss (provided by @tailwindcss/vite) Declared (previously hoisted, now explicit): - root: @types/ws, playwright, ws (used by scripts/) - server: @mariozechner/pi-ai, @mariozechner/pi-agent-core - app: expo-asset, qrcode, @types/qrcode, tiny-invariant, @xterm/headless, dotenv, jsdom - cli: vitest - desktop: vitest Also removes the stray `/app.json` (obsolete, overridden by packages/app/app.config.js).
87 lines
2.3 KiB
JSON
87 lines
2.3 KiB
JSON
{
|
|
"$schema": "./node_modules/knip/schema.json",
|
|
"workspaces": {
|
|
".": {
|
|
"entry": ["scripts/**/*.{js,mjs,cjs,ts}"],
|
|
"project": ["scripts/**/*.{js,mjs,cjs,ts}"]
|
|
},
|
|
"packages/server": {
|
|
"entry": [
|
|
"src/server/index.ts",
|
|
"src/server/exports.ts",
|
|
"src/utils/tool-call-parsers.ts",
|
|
"scripts/**/*.{ts,mts,mjs,cjs,js}",
|
|
"src/**/*.test.ts",
|
|
"src/**/*.test.tsx",
|
|
"src/**/*.e2e.ts",
|
|
"src/**/*.e2e.tsx"
|
|
],
|
|
"project": ["src/**/*.{ts,tsx}", "scripts/**/*.{ts,mts,mjs,cjs,js}"]
|
|
},
|
|
"packages/app": {
|
|
"entry": [
|
|
"index.ts",
|
|
"app.config.js",
|
|
"app/**/*.{ts,tsx}",
|
|
"src/**/*.test.{ts,tsx}",
|
|
"src/**/*.e2e.{ts,tsx}",
|
|
"e2e/**/*.{ts,tsx}",
|
|
"playwright.config.{ts,js}",
|
|
"vitest.config.{ts,js}"
|
|
],
|
|
"project": ["**/*.{ts,tsx,js,jsx}"],
|
|
"ignore": ["android/**", "ios/**", ".expo/**", "dist/**", "scripts/reset-project.js"]
|
|
},
|
|
"packages/cli": {
|
|
"entry": ["src/index.ts", "bin/paseo", "src/**/*.test.{ts,tsx}", "tests/**/*.{ts,tsx}"],
|
|
"project": ["src/**/*.{ts,tsx}", "tests/**/*.{ts,tsx}"]
|
|
},
|
|
"packages/relay": {
|
|
"entry": ["src/index.ts", "src/e2ee.ts", "src/cloudflare-adapter.ts", "src/**/*.test.ts"],
|
|
"project": ["src/**/*.ts"]
|
|
},
|
|
"packages/website": {
|
|
"entry": ["src/router.tsx", "vite.config.ts", "src/routes/**/*.tsx"],
|
|
"project": ["src/**/*.{ts,tsx}"],
|
|
"ignore": ["src/routeTree.gen.ts"]
|
|
},
|
|
"packages/desktop": {
|
|
"entry": ["src/main.ts", "src/preload.ts", "src/**/*.test.ts"],
|
|
"project": ["src/**/*.ts"]
|
|
},
|
|
"packages/highlight": {
|
|
"entry": ["src/index.ts", "src/**/*.test.ts"],
|
|
"project": ["src/**/*.ts"]
|
|
},
|
|
"packages/expo-two-way-audio": {
|
|
"entry": ["src/index.ts"],
|
|
"project": ["src/**/*.ts"]
|
|
}
|
|
},
|
|
"ignoreDependencies": [
|
|
"sherpa-onnx-node",
|
|
"@playwright/test",
|
|
"material-icon-theme",
|
|
"eas-cli",
|
|
"wait-on",
|
|
"concurrently",
|
|
"get-port-cli",
|
|
"patch-package",
|
|
"cross-env",
|
|
"expo-module-scripts",
|
|
"buffer",
|
|
"metro-config"
|
|
],
|
|
"ignoreBinaries": [
|
|
"expo-module",
|
|
"xed",
|
|
"eas",
|
|
"playwright",
|
|
"wrangler",
|
|
"powershell",
|
|
"tsx",
|
|
"vitest",
|
|
"open"
|
|
]
|
|
}
|