├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .prettierrc.yaml ├── README.md ├── babel.config.js ├── index.js ├── package.json ├── src ├── cpu.js ├── memory.js ├── network.js └── savedata.js ├── test ├── cpu.spec.js ├── memory.spec.js ├── network.spec.js └── savedata.spec.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/package.json -------------------------------------------------------------------------------- /src/cpu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/src/cpu.js -------------------------------------------------------------------------------- /src/memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/src/memory.js -------------------------------------------------------------------------------- /src/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/src/network.js -------------------------------------------------------------------------------- /src/savedata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/src/savedata.js -------------------------------------------------------------------------------- /test/cpu.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/test/cpu.spec.js -------------------------------------------------------------------------------- /test/memory.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/test/memory.spec.js -------------------------------------------------------------------------------- /test/network.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/test/network.spec.js -------------------------------------------------------------------------------- /test/savedata.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/test/savedata.spec.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pngwn/svelte-adaptive-sensors/HEAD/yarn.lock --------------------------------------------------------------------------------