├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── icon.svg ├── package.json ├── screenshot.png ├── src ├── SiteInfoStats.js └── renderer.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflywheel/local-addon-stats/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflywheel/local-addon-stats/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflywheel/local-addon-stats/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflywheel/local-addon-stats/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.tgz 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflywheel/local-addon-stats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflywheel/local-addon-stats/HEAD/README.md -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflywheel/local-addon-stats/HEAD/icon.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflywheel/local-addon-stats/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflywheel/local-addon-stats/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/SiteInfoStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflywheel/local-addon-stats/HEAD/src/SiteInfoStats.js -------------------------------------------------------------------------------- /src/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflywheel/local-addon-stats/HEAD/src/renderer.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflywheel/local-addon-stats/HEAD/yarn.lock --------------------------------------------------------------------------------