├── .eslintrc.json ├── .github └── workflows │ ├── deploy.yml │ └── lint.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierrc.json ├── .stylelintrc.cjs ├── CHANGELOG.md ├── LICENSE ├── README.md ├── commitlint.config.js ├── depspy.script.json ├── docs ├── .vitepress │ ├── config.mts │ └── theme │ │ ├── index.css │ │ └── index.ts ├── api │ └── api.md ├── concepts │ ├── dependence.md │ ├── find.md │ ├── static.md │ ├── status.md │ └── version.md ├── config │ └── config.md ├── guid │ ├── concepts.md │ └── get-started.md ├── guide │ └── get-started.md ├── index.css ├── index.md └── public │ └── icon.svg ├── lerna.json ├── package.json ├── packages ├── .DS_Store ├── cli │ ├── CHANGELOG.md │ ├── __tests__ │ │ ├── conformConfig.spec.ts │ │ └── dep-spy.config.mjs │ ├── bin │ │ └── cli │ ├── package.json │ ├── src │ │ ├── cli.ts │ │ ├── conformConfig.ts │ │ ├── constants.ts │ │ ├── defineConfig.ts │ │ ├── index.ts │ │ ├── server │ │ │ ├── createHttp.ts │ │ │ ├── createServer.ts │ │ │ ├── createWs.ts │ │ │ ├── eventBus.ts │ │ │ └── worker.ts │ │ ├── static │ │ │ ├── createHttp.ts │ │ │ └── createServer.ts │ │ └── utils.ts │ ├── tsconfig.json │ └── tsup.config.ts ├── core │ ├── CHANGELOG.md │ ├── __tests__ │ │ ├── generateGraph.spec.ts │ │ └── npm │ │ │ └── package.json │ ├── package.json │ ├── public │ │ └── index.html │ ├── src │ │ ├── api │ │ │ ├── config.ts │ │ │ ├── index.ts │ │ │ └── prompts.ts │ │ ├── constant.ts │ │ ├── dep │ │ │ ├── generateGraph.ts │ │ │ ├── graph.ts │ │ │ └── onlineModuleInfoPool.ts │ │ ├── index.ts │ │ ├── static │ │ │ ├── adapter │ │ │ │ ├── rspackPluginDepSpy.ts │ │ │ │ ├── vitePluginDepSpy.ts │ │ │ │ └── webpackPluginDepSpy.ts │ │ │ ├── getAllExportEffected.ts │ │ │ ├── getTreeShakingDetail │ │ │ │ ├── ast.ts │ │ │ │ ├── esbuild.ts │ │ │ │ └── rolldown.ts │ │ │ ├── staticGraph.ts │ │ │ └── utils.ts │ │ ├── threadsPool │ │ │ ├── eventBus.ts │ │ │ ├── index.ts │ │ │ └── worker.ts │ │ └── type.ts │ └── tsup.config.ts ├── utils │ ├── CHANGELOG.md │ ├── __tests__ │ │ └── getModuleInfo.spec.ts │ ├── package.json │ ├── src │ │ ├── buffer.ts │ │ ├── constant.ts │ │ ├── getModuleInfo.ts │ │ ├── index.ts │ │ ├── jsonReplacers.ts │ │ ├── pool.ts │ │ ├── type.ts │ │ └── utils.ts │ └── tsup.config.ts └── view │ ├── .DS_Store │ ├── constant.ts │ ├── dep-spy.config.mjs │ ├── env │ ├── .env.inject │ ├── .env.offline │ └── .env.online │ ├── favicon.svg │ ├── index.html │ ├── index.ts │ ├── package.json │ ├── plugins │ ├── generate404.ts │ └── neutralization.ts │ ├── src │ ├── App.tsx │ ├── components │ │ ├── Back │ │ │ └── index.tsx │ │ ├── Collapse │ │ │ └── index.tsx │ │ ├── Depth │ │ │ └── index.tsx │ │ ├── DiffPanel │ │ │ └── index.tsx │ │ ├── Export │ │ │ └── index.jsx │ │ ├── FirstTreeMap │ │ │ ├── DrawRect.tsx │ │ │ ├── Portal.tsx │ │ │ ├── Tooltip.tsx │ │ │ ├── index.scss │ │ │ ├── index.tsx │ │ │ ├── store │ │ │ │ ├── context.ts │ │ │ │ └── index.tsx │ │ │ └── types │ │ │ │ └── index.ts │ │ ├── GridBack │ │ │ └── index.tsx │ │ ├── Loading │ │ │ └── index.tsx │ │ ├── SideModule │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── SideSearch │ │ │ ├── index.module.scss │ │ │ └── index.tsx │ │ ├── SideTreeList │ │ │ ├── CircleDepList │ │ │ │ └── index.tsx │ │ │ ├── CoDepList │ │ │ │ └── index.tsx │ │ │ ├── DrawerBox │ │ │ │ ├── DrawerItem │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.scss │ │ │ │ └── index.tsx │ │ │ ├── SelectItem │ │ │ │ ├── index.scss │ │ │ │ └── index.tsx │ │ │ ├── SelectedTitle │ │ │ │ ├── index.scss │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── SizeTree │ │ │ └── index.tsx │ │ ├── Skeleton │ │ │ ├── index.scss │ │ │ └── index.tsx │ │ ├── StaticTree │ │ │ ├── constant.ts │ │ │ └── index.tsx │ │ ├── Toast │ │ │ └── index.tsx │ │ ├── Tree │ │ │ ├── SvgComponents.jsx │ │ │ ├── index.jsx │ │ │ └── index.scss │ │ └── icon │ │ │ ├── index.scss │ │ │ └── index.tsx │ ├── contexts │ │ ├── api.ts │ │ ├── eventBus.ts │ │ ├── index.ts │ │ ├── linkContext.ts │ │ └── searchNode.ts │ ├── i18n │ │ ├── config.ts │ │ ├── en.json │ │ ├── hooks │ │ │ └── useLanguage.tsx │ │ └── zh.json │ ├── index.css │ ├── main.tsx │ ├── pages │ │ ├── AnalyzePage │ │ │ ├── Sidebar │ │ │ │ ├── ChooseItem │ │ │ │ │ ├── index.scss │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.scss │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── SearchPage │ │ │ ├── assets │ │ │ │ ├── logo_dark_large.svg │ │ │ │ └── logo_light_large.svg │ │ │ ├── components │ │ │ │ ├── layout │ │ │ │ │ ├── Header.scss │ │ │ │ │ ├── Header.tsx │ │ │ │ │ ├── HistoryPage.scss │ │ │ │ │ ├── HistoryPage.tsx │ │ │ │ │ ├── MainNavigation.scss │ │ │ │ │ └── MainNavigation.tsx │ │ │ │ ├── search │ │ │ │ │ ├── DragAndDrop.scss │ │ │ │ │ ├── DragAndDrop.tsx │ │ │ │ │ ├── Logo.scss │ │ │ │ │ ├── Logo.tsx │ │ │ │ │ ├── SearchBar.tsx │ │ │ │ │ ├── SearchSection.tsx │ │ │ │ │ ├── SwitchButton.scss │ │ │ │ │ ├── SwitchButton.tsx │ │ │ │ │ └── theme.module.scss │ │ │ │ └── store │ │ │ │ │ └── MainPageContext.tsx │ │ │ ├── index.scss │ │ │ ├── index.tsx │ │ │ └── util │ │ │ │ ├── FetchPackageNames.tsx │ │ │ │ └── GenerateGraphWrapper.tsx │ │ └── StaticAnalyzePage │ │ │ ├── Sidebar │ │ │ ├── Global │ │ │ │ ├── icons.ts │ │ │ │ └── index.tsx │ │ │ ├── Selected │ │ │ │ ├── index.scss │ │ │ │ └── index.tsx │ │ │ └── components │ │ │ │ └── SidebarButton.tsx │ │ │ ├── Tool │ │ │ ├── DropDown.tsx │ │ │ ├── ToggleButton.tsx │ │ │ ├── index.tsx │ │ │ └── type │ │ │ │ └── index.ts │ │ │ ├── assets │ │ │ ├── css.svg │ │ │ ├── html.svg │ │ │ ├── js.svg │ │ │ ├── json.svg │ │ │ ├── jsx.svg │ │ │ ├── less.svg │ │ │ ├── sass.svg │ │ │ ├── ts.svg │ │ │ ├── tsx.svg │ │ │ └── vue.svg │ │ │ ├── index.scss │ │ │ ├── index.tsx │ │ │ └── utils │ │ │ └── index.ts │ ├── utils │ │ ├── deepClone.ts │ │ ├── objSame.ts │ │ ├── parseBufferToTree.ts │ │ ├── stringifyObjToParams.ts │ │ ├── test.ts │ │ ├── textOverflow.ts │ │ ├── throttle.ts │ │ └── unitConvert.ts │ ├── vars.css │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsup.config.ts │ ├── types │ ├── searchSide.ts │ ├── shims.d.ts │ └── types.ts │ ├── uno.config.ts │ └── vite.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts ├── index.mjs └── performance │ ├── index.mjs │ └── performance.mjs ├── tsconfig.json └── vitest.config.mts /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "endOfLine": "auto" 3 | } 4 | -------------------------------------------------------------------------------- /.stylelintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/.stylelintrc.cjs -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ["@commitlint/config-conventional"], 3 | }; 4 | -------------------------------------------------------------------------------- /depspy.script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/depspy.script.json -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/docs/.vitepress/theme/index.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/api/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/docs/api/api.md -------------------------------------------------------------------------------- /docs/concepts/dependence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/docs/concepts/dependence.md -------------------------------------------------------------------------------- /docs/concepts/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/docs/concepts/find.md -------------------------------------------------------------------------------- /docs/concepts/static.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/docs/concepts/static.md -------------------------------------------------------------------------------- /docs/concepts/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/docs/concepts/status.md -------------------------------------------------------------------------------- /docs/concepts/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/docs/concepts/version.md -------------------------------------------------------------------------------- /docs/config/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/docs/config/config.md -------------------------------------------------------------------------------- /docs/guid/concepts.md: -------------------------------------------------------------------------------- 1 | # Concepts 2 | -------------------------------------------------------------------------------- /docs/guid/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/docs/guid/get-started.md -------------------------------------------------------------------------------- /docs/guide/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/docs/guide/get-started.md -------------------------------------------------------------------------------- /docs/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/docs/index.css -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/docs/public/icon.svg -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/package.json -------------------------------------------------------------------------------- /packages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/.DS_Store -------------------------------------------------------------------------------- /packages/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/cli/__tests__/conformConfig.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/__tests__/conformConfig.spec.ts -------------------------------------------------------------------------------- /packages/cli/__tests__/dep-spy.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/__tests__/dep-spy.config.mjs -------------------------------------------------------------------------------- /packages/cli/bin/cli: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require("../dist/cli.js"); 3 | -------------------------------------------------------------------------------- /packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/package.json -------------------------------------------------------------------------------- /packages/cli/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/src/cli.ts -------------------------------------------------------------------------------- /packages/cli/src/conformConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/src/conformConfig.ts -------------------------------------------------------------------------------- /packages/cli/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/src/constants.ts -------------------------------------------------------------------------------- /packages/cli/src/defineConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/src/defineConfig.ts -------------------------------------------------------------------------------- /packages/cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/src/index.ts -------------------------------------------------------------------------------- /packages/cli/src/server/createHttp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/src/server/createHttp.ts -------------------------------------------------------------------------------- /packages/cli/src/server/createServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/src/server/createServer.ts -------------------------------------------------------------------------------- /packages/cli/src/server/createWs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/src/server/createWs.ts -------------------------------------------------------------------------------- /packages/cli/src/server/eventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/src/server/eventBus.ts -------------------------------------------------------------------------------- /packages/cli/src/server/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/src/server/worker.ts -------------------------------------------------------------------------------- /packages/cli/src/static/createHttp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/src/static/createHttp.ts -------------------------------------------------------------------------------- /packages/cli/src/static/createServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/src/static/createServer.ts -------------------------------------------------------------------------------- /packages/cli/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/src/utils.ts -------------------------------------------------------------------------------- /packages/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/cli/tsup.config.ts -------------------------------------------------------------------------------- /packages/core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/core/__tests__/generateGraph.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/__tests__/generateGraph.spec.ts -------------------------------------------------------------------------------- /packages/core/__tests__/npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/__tests__/npm/package.json -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/public/index.html -------------------------------------------------------------------------------- /packages/core/src/api/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/api/config.ts -------------------------------------------------------------------------------- /packages/core/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/api/index.ts -------------------------------------------------------------------------------- /packages/core/src/api/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/api/prompts.ts -------------------------------------------------------------------------------- /packages/core/src/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/constant.ts -------------------------------------------------------------------------------- /packages/core/src/dep/generateGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/dep/generateGraph.ts -------------------------------------------------------------------------------- /packages/core/src/dep/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/dep/graph.ts -------------------------------------------------------------------------------- /packages/core/src/dep/onlineModuleInfoPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/dep/onlineModuleInfoPool.ts -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/src/static/adapter/rspackPluginDepSpy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/static/adapter/rspackPluginDepSpy.ts -------------------------------------------------------------------------------- /packages/core/src/static/adapter/vitePluginDepSpy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/static/adapter/vitePluginDepSpy.ts -------------------------------------------------------------------------------- /packages/core/src/static/adapter/webpackPluginDepSpy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/static/adapter/webpackPluginDepSpy.ts -------------------------------------------------------------------------------- /packages/core/src/static/getAllExportEffected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/static/getAllExportEffected.ts -------------------------------------------------------------------------------- /packages/core/src/static/getTreeShakingDetail/ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/static/getTreeShakingDetail/ast.ts -------------------------------------------------------------------------------- /packages/core/src/static/getTreeShakingDetail/esbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/static/getTreeShakingDetail/esbuild.ts -------------------------------------------------------------------------------- /packages/core/src/static/getTreeShakingDetail/rolldown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/static/getTreeShakingDetail/rolldown.ts -------------------------------------------------------------------------------- /packages/core/src/static/staticGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/static/staticGraph.ts -------------------------------------------------------------------------------- /packages/core/src/static/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/static/utils.ts -------------------------------------------------------------------------------- /packages/core/src/threadsPool/eventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/threadsPool/eventBus.ts -------------------------------------------------------------------------------- /packages/core/src/threadsPool/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/threadsPool/index.ts -------------------------------------------------------------------------------- /packages/core/src/threadsPool/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/threadsPool/worker.ts -------------------------------------------------------------------------------- /packages/core/src/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/src/type.ts -------------------------------------------------------------------------------- /packages/core/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/core/tsup.config.ts -------------------------------------------------------------------------------- /packages/utils/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/utils/CHANGELOG.md -------------------------------------------------------------------------------- /packages/utils/__tests__/getModuleInfo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/utils/__tests__/getModuleInfo.spec.ts -------------------------------------------------------------------------------- /packages/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/utils/package.json -------------------------------------------------------------------------------- /packages/utils/src/buffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/utils/src/buffer.ts -------------------------------------------------------------------------------- /packages/utils/src/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/utils/src/constant.ts -------------------------------------------------------------------------------- /packages/utils/src/getModuleInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/utils/src/getModuleInfo.ts -------------------------------------------------------------------------------- /packages/utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/utils/src/index.ts -------------------------------------------------------------------------------- /packages/utils/src/jsonReplacers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/utils/src/jsonReplacers.ts -------------------------------------------------------------------------------- /packages/utils/src/pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/utils/src/pool.ts -------------------------------------------------------------------------------- /packages/utils/src/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/utils/src/type.ts -------------------------------------------------------------------------------- /packages/utils/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/utils/src/utils.ts -------------------------------------------------------------------------------- /packages/utils/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/utils/tsup.config.ts -------------------------------------------------------------------------------- /packages/view/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/.DS_Store -------------------------------------------------------------------------------- /packages/view/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/constant.ts -------------------------------------------------------------------------------- /packages/view/dep-spy.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/dep-spy.config.mjs -------------------------------------------------------------------------------- /packages/view/env/.env.inject: -------------------------------------------------------------------------------- 1 | VITE_BUILD_MODE=inject -------------------------------------------------------------------------------- /packages/view/env/.env.offline: -------------------------------------------------------------------------------- 1 | VITE_BUILD_MODE=offline -------------------------------------------------------------------------------- /packages/view/env/.env.online: -------------------------------------------------------------------------------- 1 | VITE_BUILD_MODE=online -------------------------------------------------------------------------------- /packages/view/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/favicon.svg -------------------------------------------------------------------------------- /packages/view/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/index.html -------------------------------------------------------------------------------- /packages/view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/index.ts -------------------------------------------------------------------------------- /packages/view/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/package.json -------------------------------------------------------------------------------- /packages/view/plugins/generate404.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/plugins/generate404.ts -------------------------------------------------------------------------------- /packages/view/plugins/neutralization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/plugins/neutralization.ts -------------------------------------------------------------------------------- /packages/view/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/App.tsx -------------------------------------------------------------------------------- /packages/view/src/components/Back/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/Back/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/Collapse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/Collapse/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/Depth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/Depth/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/DiffPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/DiffPanel/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/Export/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/Export/index.jsx -------------------------------------------------------------------------------- /packages/view/src/components/FirstTreeMap/DrawRect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/FirstTreeMap/DrawRect.tsx -------------------------------------------------------------------------------- /packages/view/src/components/FirstTreeMap/Portal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/FirstTreeMap/Portal.tsx -------------------------------------------------------------------------------- /packages/view/src/components/FirstTreeMap/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/FirstTreeMap/Tooltip.tsx -------------------------------------------------------------------------------- /packages/view/src/components/FirstTreeMap/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/FirstTreeMap/index.scss -------------------------------------------------------------------------------- /packages/view/src/components/FirstTreeMap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/FirstTreeMap/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/FirstTreeMap/store/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/FirstTreeMap/store/context.ts -------------------------------------------------------------------------------- /packages/view/src/components/FirstTreeMap/store/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/FirstTreeMap/store/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/FirstTreeMap/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/FirstTreeMap/types/index.ts -------------------------------------------------------------------------------- /packages/view/src/components/GridBack/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/GridBack/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/Loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/Loading/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/SideModule/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/SideModule/index.scss -------------------------------------------------------------------------------- /packages/view/src/components/SideModule/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/SideModule/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/SideSearch/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/SideSearch/index.module.scss -------------------------------------------------------------------------------- /packages/view/src/components/SideSearch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/SideSearch/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/SideTreeList/CircleDepList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/SideTreeList/CircleDepList/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/SideTreeList/CoDepList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/SideTreeList/CoDepList/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/SideTreeList/DrawerBox/DrawerItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/SideTreeList/DrawerBox/DrawerItem/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/SideTreeList/DrawerBox/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/SideTreeList/DrawerBox/index.scss -------------------------------------------------------------------------------- /packages/view/src/components/SideTreeList/DrawerBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/SideTreeList/DrawerBox/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/SideTreeList/SelectItem/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/SideTreeList/SelectItem/index.scss -------------------------------------------------------------------------------- /packages/view/src/components/SideTreeList/SelectItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/SideTreeList/SelectItem/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/SideTreeList/SelectedTitle/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/SideTreeList/SelectedTitle/index.scss -------------------------------------------------------------------------------- /packages/view/src/components/SideTreeList/SelectedTitle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/SideTreeList/SelectedTitle/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/SideTreeList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/SideTreeList/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/SizeTree/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/SizeTree/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/Skeleton/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/Skeleton/index.scss -------------------------------------------------------------------------------- /packages/view/src/components/Skeleton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/Skeleton/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/StaticTree/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/StaticTree/constant.ts -------------------------------------------------------------------------------- /packages/view/src/components/StaticTree/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/StaticTree/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/Toast/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/Toast/index.tsx -------------------------------------------------------------------------------- /packages/view/src/components/Tree/SvgComponents.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/Tree/SvgComponents.jsx -------------------------------------------------------------------------------- /packages/view/src/components/Tree/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/Tree/index.jsx -------------------------------------------------------------------------------- /packages/view/src/components/Tree/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/Tree/index.scss -------------------------------------------------------------------------------- /packages/view/src/components/icon/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/icon/index.scss -------------------------------------------------------------------------------- /packages/view/src/components/icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/components/icon/index.tsx -------------------------------------------------------------------------------- /packages/view/src/contexts/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/contexts/api.ts -------------------------------------------------------------------------------- /packages/view/src/contexts/eventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/contexts/eventBus.ts -------------------------------------------------------------------------------- /packages/view/src/contexts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/contexts/index.ts -------------------------------------------------------------------------------- /packages/view/src/contexts/linkContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/contexts/linkContext.ts -------------------------------------------------------------------------------- /packages/view/src/contexts/searchNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/contexts/searchNode.ts -------------------------------------------------------------------------------- /packages/view/src/i18n/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/i18n/config.ts -------------------------------------------------------------------------------- /packages/view/src/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/i18n/en.json -------------------------------------------------------------------------------- /packages/view/src/i18n/hooks/useLanguage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/i18n/hooks/useLanguage.tsx -------------------------------------------------------------------------------- /packages/view/src/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/i18n/zh.json -------------------------------------------------------------------------------- /packages/view/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/index.css -------------------------------------------------------------------------------- /packages/view/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/main.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/AnalyzePage/Sidebar/ChooseItem/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/AnalyzePage/Sidebar/ChooseItem/index.scss -------------------------------------------------------------------------------- /packages/view/src/pages/AnalyzePage/Sidebar/ChooseItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/AnalyzePage/Sidebar/ChooseItem/index.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/AnalyzePage/Sidebar/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/AnalyzePage/Sidebar/index.scss -------------------------------------------------------------------------------- /packages/view/src/pages/AnalyzePage/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/AnalyzePage/Sidebar/index.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/AnalyzePage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/AnalyzePage/index.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/assets/logo_dark_large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/assets/logo_dark_large.svg -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/assets/logo_light_large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/assets/logo_light_large.svg -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/components/layout/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/components/layout/Header.scss -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/components/layout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/components/layout/Header.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/components/layout/HistoryPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/components/layout/HistoryPage.scss -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/components/layout/HistoryPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/components/layout/HistoryPage.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/components/layout/MainNavigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/components/layout/MainNavigation.scss -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/components/layout/MainNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/components/layout/MainNavigation.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/components/search/DragAndDrop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/components/search/DragAndDrop.scss -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/components/search/DragAndDrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/components/search/DragAndDrop.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/components/search/Logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/components/search/Logo.scss -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/components/search/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/components/search/Logo.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/components/search/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/components/search/SearchBar.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/components/search/SearchSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/components/search/SearchSection.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/components/search/SwitchButton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/components/search/SwitchButton.scss -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/components/search/SwitchButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/components/search/SwitchButton.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/components/search/theme.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/components/search/theme.module.scss -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/components/store/MainPageContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/components/store/MainPageContext.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/index.scss -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/index.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/util/FetchPackageNames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/util/FetchPackageNames.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/SearchPage/util/GenerateGraphWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/SearchPage/util/GenerateGraphWrapper.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/Sidebar/Global/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/Sidebar/Global/icons.ts -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/Sidebar/Global/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/Sidebar/Global/index.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/Sidebar/Selected/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/Sidebar/Selected/index.scss -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/Sidebar/Selected/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/Sidebar/Selected/index.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/Sidebar/components/SidebarButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/Sidebar/components/SidebarButton.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/Tool/DropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/Tool/DropDown.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/Tool/ToggleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/Tool/ToggleButton.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/Tool/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/Tool/index.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/Tool/type/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/Tool/type/index.ts -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/assets/css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/assets/css.svg -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/assets/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/assets/html.svg -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/assets/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/assets/js.svg -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/assets/json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/assets/json.svg -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/assets/jsx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/assets/jsx.svg -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/assets/less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/assets/less.svg -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/assets/sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/assets/sass.svg -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/assets/ts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/assets/ts.svg -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/assets/tsx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/assets/tsx.svg -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/assets/vue.svg -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/index.scss -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/index.tsx -------------------------------------------------------------------------------- /packages/view/src/pages/StaticAnalyzePage/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/pages/StaticAnalyzePage/utils/index.ts -------------------------------------------------------------------------------- /packages/view/src/utils/deepClone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/utils/deepClone.ts -------------------------------------------------------------------------------- /packages/view/src/utils/objSame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/utils/objSame.ts -------------------------------------------------------------------------------- /packages/view/src/utils/parseBufferToTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/utils/parseBufferToTree.ts -------------------------------------------------------------------------------- /packages/view/src/utils/stringifyObjToParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/utils/stringifyObjToParams.ts -------------------------------------------------------------------------------- /packages/view/src/utils/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/utils/test.ts -------------------------------------------------------------------------------- /packages/view/src/utils/textOverflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/utils/textOverflow.ts -------------------------------------------------------------------------------- /packages/view/src/utils/throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/utils/throttle.ts -------------------------------------------------------------------------------- /packages/view/src/utils/unitConvert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/utils/unitConvert.ts -------------------------------------------------------------------------------- /packages/view/src/vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/vars.css -------------------------------------------------------------------------------- /packages/view/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/src/vite-env.d.ts -------------------------------------------------------------------------------- /packages/view/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/tsconfig.json -------------------------------------------------------------------------------- /packages/view/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/tsup.config.ts -------------------------------------------------------------------------------- /packages/view/types/searchSide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/types/searchSide.ts -------------------------------------------------------------------------------- /packages/view/types/shims.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/types/shims.d.ts -------------------------------------------------------------------------------- /packages/view/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/types/types.ts -------------------------------------------------------------------------------- /packages/view/uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/uno.config.ts -------------------------------------------------------------------------------- /packages/view/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/packages/view/vite.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /scripts/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/scripts/index.mjs -------------------------------------------------------------------------------- /scripts/performance/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/scripts/performance/index.mjs -------------------------------------------------------------------------------- /scripts/performance/performance.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/scripts/performance/performance.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DepSpy/depspy/HEAD/vitest.config.mts --------------------------------------------------------------------------------