gitextract_8744mh5w/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── release.yml │ └── unit-test.yml ├── .gitignore ├── .npmrc ├── .vscode/ │ └── settings.json ├── LICENSE ├── README.md ├── eslint.config.js ├── package.json ├── packages/ │ ├── svg/ │ │ ├── package.json │ │ └── svgo.config.js │ └── vue/ │ ├── .gitignore │ ├── build/ │ │ ├── build.ts │ │ └── generate.ts │ ├── package.json │ ├── src/ │ │ ├── global.ts │ │ └── index.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── playground/ │ ├── index.html │ ├── package.json │ ├── src/ │ │ ├── App.vue │ │ └── main.ts │ └── vite.config.ts ├── pnpm-workspace.yaml └── tsconfig.json