├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── manifest.json ├── nodemon.json ├── package.json ├── rollup.config.ts └── src ├── components └── Settings.tsx └── index.tsx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enmity-mod/plugin-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enmity-mod/plugin-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enmity-mod/plugin-template/HEAD/README.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enmity-mod/plugin-template/HEAD/manifest.json -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enmity-mod/plugin-template/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enmity-mod/plugin-template/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enmity-mod/plugin-template/HEAD/rollup.config.ts -------------------------------------------------------------------------------- /src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enmity-mod/plugin-template/HEAD/src/components/Settings.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enmity-mod/plugin-template/HEAD/src/index.tsx --------------------------------------------------------------------------------