knip.json 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786
  1. {
  2. "$schema": "https://unpkg.com/knip@5/schema.json",
  3. "exclude": [
  4. "duplicates"
  5. ],
  6. "ignoreBinaries": [
  7. "bwrap",
  8. "icacls",
  9. "musl-gcc",
  10. "python3",
  11. "sandbox-exec",
  12. "taskkill",
  13. "where.exe"
  14. ],
  15. "ignoreWorkspaces": [
  16. "vendor/*",
  17. "python/sdk-runtime"
  18. ],
  19. "ignoreDependencies": [
  20. "@yarnpkg/cli-dist",
  21. "lightningcss"
  22. ],
  23. "workspaces": {
  24. ".": {
  25. "entry": [
  26. "scripts/**/*.mjs",
  27. "scripts/**/*.cjs"
  28. ],
  29. "project": [
  30. "scripts/**/*.ts",
  31. "scripts/**/*.mjs",
  32. "scripts/**/*.cjs"
  33. ]
  34. },
  35. "examples": {
  36. "entry": [
  37. "headless-agent/tests/fixtures/cli-mock-llm.ts",
  38. "headless-agent/tests/fixtures/semantic-checkpoint-agent.ts",
  39. "headless-agent/tests/fixtures/subagent-diagnostic-agent.ts",
  40. "headless-agent/tests/fixtures/subagent-inheritance-agent.ts",
  41. "headless-agent/tests/fixtures/subagent-settlement-fence.ts",
  42. "headless-agent/tests/fixtures/workspace-context-resume-agent.ts",
  43. "headless-agent/tests/fixtures/goal-domain/seed-goal.ts",
  44. "headless-agent/tests/fixtures/time-context-driver.ts",
  45. "headless-agent/tests/fixtures/time-context-mock-llm.ts",
  46. "headless-agent/tests/fixtures/session-telemetry-otel-driver.ts",
  47. "headless-agent/tests/fixtures/telemetry-redact-rule.ts",
  48. "headless-agent/tests/fixtures/e2b/e2b/bin.ts",
  49. "acp-agent/tests/snapshots/lsp-definition/workspace/subject.ts",
  50. "acp-agent/tests/fixtures/child-question-tripwire.ts",
  51. "acp-agent/tests/fixtures/parent-sandbox-override.ts",
  52. "acp-agent/tests/fixtures/partial-landlock-sandbox.ts",
  53. "acp-agent/tests/fixtures/subagent-durability-failure.ts",
  54. "acp-agent/tests/fixtures/subagent-report-fence.ts",
  55. "acp-agent/tests/fixtures/subagent-settlement-marker.ts",
  56. "acp-agent/tests/fixtures/workspace-context-compaction.ts",
  57. "acp-agent/tests/fixtures/subagent/subagent-acp/mock-delegating-llm.ts",
  58. "acp-agent/tests/fixtures/subagent/subagent-acp/driver.ts",
  59. "acp-agent/tests/fixtures/subagent/subagent-claude-code/fixture.ts",
  60. "acp-agent/tests/fixtures/subagent/subagent-claude-code/driver.ts",
  61. "acp-agent/tests/fixtures/subagent/subagent-codex/fixture.ts",
  62. "acp-agent/tests/fixtures/subagent/subagent-codex/driver.ts",
  63. "jsonrpc-agent/tests/fixtures/subagent/subagent-dsh-sdk/driver.ts",
  64. "jsonrpc-agent/tests/fixtures/subagent/subagent-dsh-sdk/child-mock-llm.ts",
  65. "jsonrpc-agent/tests/fixtures/subagent/subagent-dsh-sdk/mock-delegating-llm.ts",
  66. "*/tests/**/*.e2e.ts",
  67. "*/tests/**/*.snapshot.ts"
  68. ],
  69. "project": [
  70. "**/*.ts"
  71. ],
  72. "ignoreDependencies": [
  73. "@deepseek-ai/.+"
  74. ]
  75. },
  76. "packages/util/home": {
  77. "entry": [
  78. "tests/**/*.spec.ts"
  79. ],
  80. "project": [
  81. "src/**/*.ts",
  82. "tests/**/*.ts"
  83. ]
  84. },
  85. "packages/host/webserver": {
  86. "entry": [
  87. "tests/**/*.spec.ts"
  88. ],
  89. "project": [
  90. "src/**/*.ts",
  91. "tests/**/*.ts"
  92. ]
  93. },
  94. "packages/host/directory-picker-auto": {
  95. "ignoreDependencies": [
  96. "@deepseek-ai/dsh-client-ui-directory-picker-browse",
  97. "@deepseek-ai/dsh-client-ui-directory-picker-native"
  98. ]
  99. },
  100. "packages/extensions/cordis-host-runner": {
  101. "entry": [
  102. "tests/**/*.spec.ts"
  103. ],
  104. "project": [
  105. "src/**/*.ts",
  106. "tests/**/*.ts"
  107. ],
  108. "ignoreDependencies": [
  109. "zod"
  110. ]
  111. },
  112. "packages/host/directory-picker-native": {
  113. "entry": [
  114. "tests/**/*.spec.{ts,tsx}",
  115. "tests/**/*.e2e.ts"
  116. ],
  117. "project": [
  118. "src/**/*.{ts,tsx}",
  119. "tests/**/*.{ts,tsx}"
  120. ]
  121. },
  122. "packages/client/web-ui": {
  123. "entry": [
  124. "tests/**/*.spec.{ts,tsx}"
  125. ],
  126. "project": [
  127. "src/**/*.{ts,tsx}",
  128. "tests/**/*.{ts,tsx}"
  129. ]
  130. },
  131. "packages/client/runtime": {
  132. "entry": [
  133. "tests/**/*.spec.ts"
  134. ],
  135. "project": [
  136. "src/**/*.ts",
  137. "tests/**/*.ts"
  138. ]
  139. },
  140. "packages/api/remotes": {
  141. "entry": [
  142. "tests/**/*.e2e.ts"
  143. ],
  144. "project": [
  145. "src/**/*.ts",
  146. "tests/**/*.ts"
  147. ],
  148. "ignoreDependencies": [
  149. "@deepseek-ai/dsh-api-gateway"
  150. ]
  151. },
  152. "packages/client/ui-primitives": {
  153. "entry": [
  154. "tests/**/*.spec.tsx"
  155. ],
  156. "project": [
  157. "src/**/*.ts",
  158. "src/**/*.tsx",
  159. "tests/**/*.tsx"
  160. ]
  161. },
  162. "packages/client/ui-goal": {
  163. "entry": [
  164. "tests/**/*.spec.tsx"
  165. ],
  166. "project": [
  167. "src/**/*.ts",
  168. "src/**/*.tsx",
  169. "tests/**/*.tsx"
  170. ]
  171. },
  172. "packages/client/ui-directory-picker-browse": {
  173. "entry": [
  174. "tests/**/*.spec.tsx"
  175. ],
  176. "project": [
  177. "src/**/*.ts",
  178. "src/**/*.tsx",
  179. "tests/**/*.tsx"
  180. ]
  181. },
  182. "packages/client/ui-directory-picker-native": {
  183. "entry": [
  184. "tests/**/*.spec.tsx"
  185. ],
  186. "project": [
  187. "src/**/*.ts",
  188. "tests/**/*.tsx"
  189. ]
  190. },
  191. "packages/client/ui-deliverables": {
  192. "entry": [
  193. "tests/**/*.spec.tsx"
  194. ],
  195. "project": [
  196. "src/**/*.ts",
  197. "src/**/*.tsx",
  198. "tests/**/*.tsx"
  199. ]
  200. },
  201. "packages/client/ui-workflow-run": {
  202. "entry": [
  203. "tests/**/*.spec.tsx"
  204. ],
  205. "project": [
  206. "src/**/*.ts",
  207. "src/**/*.tsx",
  208. "tests/**/*.tsx"
  209. ]
  210. },
  211. "packages/client/web-react": {
  212. "entry": [
  213. "tests/**/*.spec.tsx"
  214. ],
  215. "project": [
  216. "src/**/*.ts",
  217. "src/**/*.tsx",
  218. "tests/**/*.tsx"
  219. ]
  220. },
  221. "packages/client/ui-layout": {
  222. "entry": [
  223. "tests/**/*.spec.ts",
  224. "tests/**/*.spec.tsx"
  225. ],
  226. "project": [
  227. "src/**/*.ts",
  228. "src/**/*.tsx",
  229. "tests/**/*.ts",
  230. "tests/**/*.tsx"
  231. ]
  232. },
  233. "website": {
  234. "project": [
  235. "**/*.ts"
  236. ],
  237. "ignoreDependencies": [
  238. "@braintree/sanitize-url",
  239. "cytoscape",
  240. "cytoscape-cose-bilkent",
  241. "dayjs",
  242. "debug"
  243. ]
  244. },
  245. "packages/*/*": {
  246. "entry": [
  247. "tests/**/*.spec.ts"
  248. ],
  249. "project": [
  250. "src/**/*.ts",
  251. "tests/**/*.ts"
  252. ]
  253. },
  254. "packages/core/tools": {
  255. "entry": [
  256. "tests/**/*.spec.ts"
  257. ],
  258. "project": [
  259. "src/**/*.ts",
  260. "tests/**/*.ts"
  261. ]
  262. },
  263. "packages/typert/generator": {
  264. "entry": [
  265. "tests/**/*.spec.ts",
  266. "tests/fixtures/type-model/**/*.ts",
  267. "tests/fixtures/remote-model/**/*.ts"
  268. ],
  269. "project": [
  270. "src/**/*.ts",
  271. "tests/**/*.ts"
  272. ]
  273. },
  274. "packages/shell/bash-sandbox": {
  275. "entry": [
  276. "tests/**/*.spec.ts",
  277. "tests/**/*.e2e.ts"
  278. ],
  279. "project": [
  280. "src/**/*.ts",
  281. "tests/**/*.ts"
  282. ]
  283. },
  284. "packages/shell/pwsh-sandbox": {
  285. "entry": [
  286. "tests/**/*.spec.ts",
  287. "tests/**/*.e2e.ts"
  288. ],
  289. "project": [
  290. "src/**/*.ts",
  291. "tests/**/*.ts"
  292. ]
  293. },
  294. "packages/e2b/e2b": {
  295. "entry": [
  296. "tests/**/*.spec.ts",
  297. "tests/**/*.e2e.ts"
  298. ],
  299. "project": [
  300. "src/**/*.ts",
  301. "tests/**/*.ts"
  302. ]
  303. },
  304. "packages/context/time-context": {
  305. "entry": [
  306. "tests/**/*.spec.ts",
  307. "tests/**/*.e2e.ts"
  308. ],
  309. "project": [
  310. "src/**/*.ts",
  311. "tests/**/*.ts"
  312. ]
  313. },
  314. "packages/context/tmux-context": {
  315. "entry": [
  316. "tests/**/*.spec.ts"
  317. ],
  318. "project": [
  319. "src/**/*.ts",
  320. "tests/**/*.ts"
  321. ]
  322. },
  323. "packages/lsp/lsp-stdio": {
  324. "entry": [
  325. "tests/**/*.spec.ts",
  326. "tests/**/*.e2e.ts",
  327. "tests/fixture-server.ts"
  328. ],
  329. "project": [
  330. "src/**/*.ts",
  331. "tests/**/*.ts"
  332. ],
  333. "ignoreDependencies": [
  334. "typescript-language-server"
  335. ]
  336. },
  337. "packages/sandbox/sandbox-local": {
  338. "entry": [
  339. "tests/**/*.spec.ts",
  340. "tests/**/*.e2e.ts"
  341. ],
  342. "project": [
  343. "src/**/*.ts",
  344. "tests/**/*.ts"
  345. ]
  346. },
  347. "packages/session/session-telemetry-otel": {
  348. "entry": [
  349. "tests/**/*.spec.ts",
  350. "tests/**/*.e2e.ts"
  351. ],
  352. "project": [
  353. "src/**/*.ts",
  354. "tests/**/*.ts"
  355. ]
  356. },
  357. "packages/util/brand": {
  358. "project": [
  359. "src/**/*.ts"
  360. ]
  361. },
  362. "packages/attachment/attachment": {
  363. "project": [
  364. "src/**/*.ts"
  365. ]
  366. },
  367. "packages/util/timeout": {
  368. "entry": [
  369. "tests/**/*.spec.ts"
  370. ],
  371. "project": [
  372. "src/**/*.ts",
  373. "tests/**/*.ts"
  374. ]
  375. },
  376. "packages/util/output-retention": {
  377. "entry": [
  378. "tests/**/*.spec.ts"
  379. ],
  380. "project": [
  381. "src/**/*.ts",
  382. "tests/**/*.ts"
  383. ]
  384. },
  385. "packages/test-support/acp-snapshot": {
  386. "entry": [
  387. "tests/**/*.spec.ts",
  388. "tests/fixtures/fake-acp-agent.ts"
  389. ],
  390. "project": [
  391. "src/**/*.ts",
  392. "tests/**/*.ts"
  393. ]
  394. },
  395. "packages/test-support/loader-smoke": {
  396. "entry": [
  397. "tests/**/*.spec.ts",
  398. "tests/fixtures/*.ts"
  399. ],
  400. "project": [
  401. "src/**/*.ts",
  402. "tests/**/*.ts"
  403. ]
  404. },
  405. "packages/core/agent-loop": {
  406. "entry": [
  407. "tests/**/*.spec.ts",
  408. "tests/**/*.e2e.ts"
  409. ],
  410. "project": [
  411. "src/**/*.ts",
  412. "tests/**/*.ts"
  413. ]
  414. },
  415. "packages/goal/goal": {
  416. "entry": [
  417. "tests/**/*.spec.ts",
  418. "tests/**/*.e2e.ts"
  419. ],
  420. "project": [
  421. "src/**/*.ts",
  422. "tests/**/*.ts"
  423. ]
  424. },
  425. "packages/goal/goal-round-driver": {
  426. "entry": [
  427. "tests/**/*.spec.ts"
  428. ],
  429. "project": [
  430. "src/**/*.ts",
  431. "tests/**/*.ts"
  432. ]
  433. },
  434. "packages/goal/tool-goal": {
  435. "entry": [
  436. "tests/**/*.spec.ts"
  437. ],
  438. "project": [
  439. "src/**/*.ts",
  440. "tests/**/*.ts"
  441. ]
  442. },
  443. "packages/session-query/session-query-sqlite": {
  444. "entry": [
  445. "tests/**/*.spec.ts",
  446. "tests/**/*.e2e.ts"
  447. ],
  448. "project": [
  449. "src/**/*.ts",
  450. "tests/**/*.ts"
  451. ]
  452. },
  453. "packages/code-runtime/code-runtime-worker-thread": {
  454. "entry": [
  455. "tests/**/*.spec.ts",
  456. "tests/**/*.e2e.ts"
  457. ],
  458. "project": [
  459. "src/**/*.ts",
  460. "tests/**/*.ts"
  461. ]
  462. },
  463. "packages/llm/llm-deepseek": {
  464. "entry": [
  465. "tests/**/*.spec.ts",
  466. "tests/**/*.e2e.ts"
  467. ],
  468. "project": [
  469. "src/**/*.ts",
  470. "tests/**/*.ts"
  471. ]
  472. },
  473. "packages/llm/llm-pi-ai": {
  474. "entry": [
  475. "tests/**/*.spec.ts",
  476. "tests/**/*.e2e.ts"
  477. ],
  478. "project": [
  479. "src/**/*.ts",
  480. "tests/**/*.ts"
  481. ]
  482. },
  483. "packages/session/session-title-first-prompt-llm": {
  484. "entry": [
  485. "tests/**/*.spec.ts",
  486. "tests/**/*.e2e.ts"
  487. ],
  488. "project": [
  489. "src/**/*.ts",
  490. "tests/**/*.ts"
  491. ]
  492. },
  493. "packages/context/agent-instructions": {
  494. "entry": [
  495. "tests/**/*.spec.ts",
  496. "tests/**/*.e2e.ts"
  497. ],
  498. "project": [
  499. "src/**/*.ts",
  500. "tests/**/*.ts"
  501. ]
  502. },
  503. "packages/session/session-checkpoint-policy": {
  504. "entry": [
  505. "tests/**/*.spec.ts",
  506. "tests/**/*.e2e.ts"
  507. ],
  508. "project": [
  509. "src/**/*.ts",
  510. "tests/**/*.ts"
  511. ]
  512. },
  513. "packages/util/home-paths": {
  514. "entry": [
  515. "tests/**/*.spec.ts"
  516. ],
  517. "project": [
  518. "src/**/*.ts",
  519. "tests/**/*.ts"
  520. ]
  521. },
  522. "packages/web/web-search-exa": {
  523. "entry": [
  524. "tests/**/*.spec.ts",
  525. "tests/**/*.e2e.ts"
  526. ],
  527. "project": [
  528. "src/**/*.ts",
  529. "tests/**/*.ts"
  530. ]
  531. },
  532. "packages/web/web-search-perplexity": {
  533. "entry": [
  534. "tests/**/*.spec.ts",
  535. "tests/**/*.e2e.ts"
  536. ],
  537. "project": [
  538. "src/**/*.ts",
  539. "tests/**/*.ts"
  540. ]
  541. },
  542. "packages/workflow/workflow-worker-thread": {
  543. "entry": [
  544. "tests/**/*.spec.ts",
  545. "tests/**/*.e2e.ts"
  546. ],
  547. "project": [
  548. "src/**/*.ts",
  549. "tests/**/*.ts"
  550. ]
  551. },
  552. "packages/web/web-search-deepseek": {
  553. "entry": [
  554. "tests/**/*.spec.ts",
  555. "tests/**/*.e2e.ts"
  556. ],
  557. "project": [
  558. "src/**/*.ts",
  559. "tests/**/*.ts"
  560. ]
  561. },
  562. "packages/examples/acp-demo": {
  563. "entry": [
  564. "tests/**/*.spec.ts",
  565. "tests/**/*.e2e.ts"
  566. ],
  567. "project": [
  568. "src/**/*.ts",
  569. "tests/**/*.ts"
  570. ]
  571. },
  572. "packages/examples/agent-spine-demo": {
  573. "entry": [
  574. "tests/**/*.spec.ts",
  575. "tests/**/*.e2e.ts"
  576. ],
  577. "project": [
  578. "src/**/*.ts",
  579. "tests/**/*.ts"
  580. ]
  581. },
  582. "packages/sdk/server": {
  583. "entry": [
  584. "tests/**/*.spec.ts",
  585. "tests/**/*.e2e.ts"
  586. ],
  587. "project": [
  588. "src/**/*.ts",
  589. "tests/**/*.ts"
  590. ]
  591. },
  592. "packages/interaction/commands": {
  593. "entry": [
  594. "tests/**/*.spec.ts"
  595. ],
  596. "project": [
  597. "src/**/*.ts",
  598. "tests/**/*.ts"
  599. ],
  600. "ignoreDependencies": [
  601. "zod"
  602. ]
  603. },
  604. "packages/examples/jsonrpc-demo": {
  605. "project": [
  606. "src/**/*.ts"
  607. ]
  608. },
  609. "packages/subagent/subagent-spawn-in-process": {
  610. "entry": [
  611. "tests/**/*.spec.ts",
  612. "tests/**/*.e2e.ts"
  613. ],
  614. "project": [
  615. "src/**/*.ts",
  616. "tests/**/*.ts"
  617. ]
  618. },
  619. "packages/subagent/subagent-acp": {
  620. "entry": [
  621. "tests/**/*.spec.ts",
  622. "tests/**/*.e2e.ts",
  623. "tests/mock-acp-server.ts"
  624. ],
  625. "project": [
  626. "src/**/*.ts",
  627. "tests/**/*.ts"
  628. ]
  629. },
  630. "packages/subagent/subagent-codex": {
  631. "entry": [
  632. "tests/**/*.spec.ts",
  633. "tests/**/*.e2e.ts"
  634. ],
  635. "project": [
  636. "src/**/*.ts",
  637. "tests/**/*.ts"
  638. ],
  639. "ignoreDependencies": [
  640. "@openai/codex"
  641. ]
  642. },
  643. "packages/subagent/subagent-claude-code": {
  644. "entry": [
  645. "tests/**/*.spec.ts",
  646. "tests/**/*.e2e.ts"
  647. ],
  648. "project": [
  649. "src/**/*.ts",
  650. "tests/**/*.ts"
  651. ]
  652. },
  653. "packages/fs/tool-fs": {
  654. "entry": [
  655. "tests/**/*.spec.ts",
  656. "tests/**/*.e2e.ts"
  657. ],
  658. "project": [
  659. "src/**/*.ts",
  660. "tests/**/*.ts"
  661. ]
  662. },
  663. "packages/fs/tool-fs-search": {
  664. "entry": [
  665. "tests/**/*.spec.ts"
  666. ],
  667. "project": [
  668. "src/**/*.ts",
  669. "tests/**/*.ts"
  670. ]
  671. },
  672. "packages/mcp/mcp-client": {
  673. "entry": [
  674. "tests/**/*.spec.ts",
  675. "tests/**/*.e2e.ts",
  676. "tests/fixture-server.ts"
  677. ],
  678. "project": [
  679. "src/**/*.ts",
  680. "tests/**/*.ts"
  681. ],
  682. "ignoreDependencies": [
  683. "@modelcontextprotocol/server-everything",
  684. "@modelcontextprotocol/server-filesystem"
  685. ]
  686. },
  687. "packages/client/web": {
  688. "project": [
  689. "src/**/*.ts",
  690. "src/**/*.tsx",
  691. "tests/**/*.tsx"
  692. ],
  693. "ignoreDependencies": [
  694. "@deepseek-ai/dsh-client-ui-theme"
  695. ]
  696. },
  697. "packages/client/ui-settings": {
  698. "entry": [
  699. "tests/**/*.spec.ts"
  700. ],
  701. "project": [
  702. "src/**/*.ts",
  703. "tests/**/*.ts"
  704. ]
  705. },
  706. "apps/web": {
  707. "entry": [
  708. "tests/**/*.e2e.ts",
  709. "tests/**/*.perf.ts",
  710. "tests/**/*.snapshot.ts",
  711. "tests/support.ts",
  712. "src/node-module-stub.ts"
  713. ],
  714. "project": [
  715. "src/**/*.ts",
  716. "tests/**/*.ts"
  717. ],
  718. "ignoreDependencies": [
  719. "@deepseek-ai/dsh-client-ui-primitives",
  720. "@deepseek-ai/dsh-client-ui-slots",
  721. "@deepseek-ai/dsh-client-web-react",
  722. "@types/react",
  723. "@types/react-dom",
  724. "react",
  725. "react-dom"
  726. ]
  727. },
  728. "apps/cli": {
  729. "entry": [
  730. "tests/**/*.spec.ts",
  731. "tests/**/*.e2e.ts",
  732. "tests/**/*.snapshot.ts"
  733. ],
  734. "project": [
  735. "src/**/*.ts",
  736. "tests/**/*.ts"
  737. ],
  738. "ignoreDependencies": [
  739. "@deepseek-ai/.+"
  740. ]
  741. },
  742. "packages/client/modules": {
  743. "entry": [
  744. "tests/**/*.spec.ts"
  745. ],
  746. "project": [
  747. "src/**/*.ts",
  748. "tests/**/*.ts"
  749. ]
  750. },
  751. "packages/client/hmr": {
  752. "entry": [
  753. "tests/**/*.spec.ts"
  754. ],
  755. "project": [
  756. "src/**/*.ts",
  757. "tests/**/*.ts"
  758. ]
  759. },
  760. "packages/subagent/subagent-dsh-sdk": {
  761. "entry": [
  762. "tests/**/*.spec.ts",
  763. "tests/**/*.e2e.ts"
  764. ],
  765. "project": [
  766. "src/**/*.ts",
  767. "tests/**/*.ts"
  768. ]
  769. },
  770. "packages/bundle/base": {
  771. "ignoreDependencies": [
  772. "@deepseek-ai/.+"
  773. ]
  774. },
  775. "packages/bundle/headless": {
  776. "ignoreDependencies": [
  777. "@deepseek-ai/dsh-code-runtime-worker-thread"
  778. ]
  779. },
  780. "packages/bundle/web-app": {
  781. "ignoreDependencies": [
  782. "@deepseek-ai/.+"
  783. ]
  784. }
  785. }
  786. }