├── .all-contributorsrc ├── .gitignore ├── LICENSE.md ├── README.md ├── assets └── sample.jpg ├── extras.d.ts ├── package.json ├── src ├── components │ ├── StatsColumn.tsx │ ├── StatsRow.tsx │ └── innerContainer.tsx ├── helpers │ ├── globals.ts │ ├── initialData.ts │ └── systemDetails.ts └── index.tsx ├── tsconfig.json └── webpack.config.js /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegfriedgrimbeek/NodeGUI-System-Utility-Library/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/ 3 | *.log -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegfriedgrimbeek/NodeGUI-System-Utility-Library/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | NodeGUI System Utility Library 2 | -------------------------------------------------------------------------------- /assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegfriedgrimbeek/NodeGUI-System-Utility-Library/HEAD/assets/sample.jpg -------------------------------------------------------------------------------- /extras.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.jpg"; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegfriedgrimbeek/NodeGUI-System-Utility-Library/HEAD/package.json -------------------------------------------------------------------------------- /src/components/StatsColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegfriedgrimbeek/NodeGUI-System-Utility-Library/HEAD/src/components/StatsColumn.tsx -------------------------------------------------------------------------------- /src/components/StatsRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegfriedgrimbeek/NodeGUI-System-Utility-Library/HEAD/src/components/StatsRow.tsx -------------------------------------------------------------------------------- /src/components/innerContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegfriedgrimbeek/NodeGUI-System-Utility-Library/HEAD/src/components/innerContainer.tsx -------------------------------------------------------------------------------- /src/helpers/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegfriedgrimbeek/NodeGUI-System-Utility-Library/HEAD/src/helpers/globals.ts -------------------------------------------------------------------------------- /src/helpers/initialData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegfriedgrimbeek/NodeGUI-System-Utility-Library/HEAD/src/helpers/initialData.ts -------------------------------------------------------------------------------- /src/helpers/systemDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegfriedgrimbeek/NodeGUI-System-Utility-Library/HEAD/src/helpers/systemDetails.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegfriedgrimbeek/NodeGUI-System-Utility-Library/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegfriedgrimbeek/NodeGUI-System-Utility-Library/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siegfriedgrimbeek/NodeGUI-System-Utility-Library/HEAD/webpack.config.js --------------------------------------------------------------------------------