gitextract_wgm2a3xm/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── ci.yml │ └── release.yml ├── .gitignore ├── README.md ├── build.config.ts ├── eslint.config.js ├── examples/ │ ├── vue2/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── env.d.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── src/ │ │ │ ├── App.vue │ │ │ ├── assets/ │ │ │ │ ├── base.css │ │ │ │ └── main.css │ │ │ ├── components/ │ │ │ │ └── HelloWorld.vue │ │ │ └── main.ts │ │ ├── tsconfig.config.json │ │ ├── tsconfig.json │ │ └── vite.config.ts │ └── vue3/ │ ├── .gitignore │ ├── .vscode/ │ │ └── extensions.json │ ├── README.md │ ├── env.d.ts │ ├── index.html │ ├── package.json │ ├── src/ │ │ ├── App.vue │ │ ├── assets/ │ │ │ ├── base.css │ │ │ └── main.css │ │ ├── components/ │ │ │ └── HelloWorld.vue │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── package.json ├── packages/ │ ├── devpilot-plugin-vue-scan/ │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── client/ │ │ │ │ ├── control-panel.ts │ │ │ │ ├── fps.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── index.ts │ │ │ │ ├── runtime-control.ts │ │ │ │ ├── types.ts │ │ │ │ └── vue-injector.ts │ │ │ ├── data-store.ts │ │ │ ├── index.ts │ │ │ ├── skill.md │ │ │ └── types.ts │ │ ├── tsconfig.client.json │ │ ├── tsconfig.json │ │ └── tsdown.config.ts │ ├── extension/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── entrypoints/ │ │ │ ├── background.ts │ │ │ ├── content.ts │ │ │ └── popup/ │ │ │ ├── App.vue │ │ │ ├── index.html │ │ │ └── main.ts │ │ ├── package.json │ │ ├── tsconfig.json │ │ ├── uno.config.ts │ │ ├── utils/ │ │ │ └── storage.ts │ │ └── wxt.config.ts │ └── nuxt/ │ ├── .gitignore │ ├── Readme.md │ ├── package.json │ ├── playground/ │ │ ├── app.vue │ │ ├── components/ │ │ │ └── HelloWorld.vue │ │ ├── nuxt.config.ts │ │ ├── package.json │ │ ├── server/ │ │ │ └── tsconfig.json │ │ └── tsconfig.json │ ├── src/ │ │ ├── module.ts │ │ └── runtime/ │ │ ├── plugin.ts │ │ └── server/ │ │ └── tsconfig.json │ ├── test/ │ │ ├── basic.test.ts │ │ └── fixtures/ │ │ └── basic/ │ │ ├── app.vue │ │ ├── nuxt.config.ts │ │ └── package.json │ └── tsconfig.json ├── patches/ │ └── @vue__devtools-kit.patch ├── pnpm-workspace.yaml ├── src/ │ ├── auto.ts │ ├── core/ │ │ ├── fps.ts │ │ ├── highlight.ts │ │ ├── hook.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── global.d.ts │ ├── index.ts │ ├── index_vue2.ts │ ├── types.ts │ ├── utils/ │ │ └── MutationObserverDom.ts │ └── utils.ts ├── tsconfig.json └── uno.config.ts