├── .gitignore ├── .prettierrc.yml ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── config.json ├── package.json ├── plugins └── MyExamplePlugin │ └── index.tsx ├── pnpm-lock.yaml └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vencord/plugin-template/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["esbenp.prettier-vscode"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vencord/plugin-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vencord/plugin-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vencord/plugin-template/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vencord/plugin-template/HEAD/config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vencord/plugin-template/HEAD/package.json -------------------------------------------------------------------------------- /plugins/MyExamplePlugin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vencord/plugin-template/HEAD/plugins/MyExamplePlugin/index.tsx -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vencord/plugin-template/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vencord/plugin-template/HEAD/tsconfig.json --------------------------------------------------------------------------------