├── .editorconfig ├── .github ├── renovate.json5 └── workflows │ └── prettify-code.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── index.js ├── lib ├── CursorEffects.vue └── enhanceAppFile.js └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moefyit/vuepress-plugin-cursor-effects/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moefyit/vuepress-plugin-cursor-effects/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/prettify-code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moefyit/vuepress-plugin-cursor-effects/HEAD/.github/workflows/prettify-code.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moefyit/vuepress-plugin-cursor-effects/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.html 2 | dist/ 3 | node_modules/ 4 | *.min.js 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moefyit/vuepress-plugin-cursor-effects/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moefyit/vuepress-plugin-cursor-effects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moefyit/vuepress-plugin-cursor-effects/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moefyit/vuepress-plugin-cursor-effects/HEAD/index.js -------------------------------------------------------------------------------- /lib/CursorEffects.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moefyit/vuepress-plugin-cursor-effects/HEAD/lib/CursorEffects.vue -------------------------------------------------------------------------------- /lib/enhanceAppFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moefyit/vuepress-plugin-cursor-effects/HEAD/lib/enhanceAppFile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moefyit/vuepress-plugin-cursor-effects/HEAD/package.json --------------------------------------------------------------------------------