├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── scripts └── copy-build.js ├── src └── main.ts ├── tests └── main.test.ts ├── tsconfig.json └── webpack.config.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowbartools/firebot-custom-script-starter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowbartools/firebot-custom-script-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowbartools/firebot-custom-script-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowbartools/firebot-custom-script-starter/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowbartools/firebot-custom-script-starter/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowbartools/firebot-custom-script-starter/HEAD/package.json -------------------------------------------------------------------------------- /scripts/copy-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowbartools/firebot-custom-script-starter/HEAD/scripts/copy-build.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowbartools/firebot-custom-script-starter/HEAD/src/main.ts -------------------------------------------------------------------------------- /tests/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowbartools/firebot-custom-script-starter/HEAD/tests/main.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowbartools/firebot-custom-script-starter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crowbartools/firebot-custom-script-starter/HEAD/webpack.config.js --------------------------------------------------------------------------------