├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── package.json ├── plugins └── template │ ├── manifest.json │ └── src │ ├── Settings.tsx │ └── index.ts ├── pnpm-workspace.yaml └── tsconfig.json /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vendetta-mod/plugin-template/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vendetta-mod/plugin-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vendetta-mod/plugin-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vendetta-mod/plugin-template/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vendetta-mod/plugin-template/HEAD/package.json -------------------------------------------------------------------------------- /plugins/template/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vendetta-mod/plugin-template/HEAD/plugins/template/manifest.json -------------------------------------------------------------------------------- /plugins/template/src/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vendetta-mod/plugin-template/HEAD/plugins/template/src/Settings.tsx -------------------------------------------------------------------------------- /plugins/template/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vendetta-mod/plugin-template/HEAD/plugins/template/src/index.ts -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - plugins/* -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vendetta-mod/plugin-template/HEAD/tsconfig.json --------------------------------------------------------------------------------