···11+# Bluesky Calendar Heatmap
22+33+Creates a heatmap for the number of posts per day (like on GitHub) for you or another user.
44+55+## Instructions
66+77+1. Clone
88+2. Run `npm i`
99+3. Copy `src/config.example.js` to `src/config.js` and fill in your username/password
1010+4. Run `npm start` to start the app.
···11+<!DOCTYPE html>
22+<html lang="en">
33+ <head>
44+ <meta charset="utf-8" />
55+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
66+ <meta name="theme-color" content="#000000" />
77+ <!--
88+ manifest.json provides metadata used when your web app is added to the
99+ homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
1010+ -->
1111+ <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
1212+ <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
1313+ <!--
1414+ Notice the use of %PUBLIC_URL% in the tags above.
1515+ It will be replaced with the URL of the `public` folder during the build.
1616+ Only files inside the `public` folder can be referenced from the HTML.
1717+1818+ Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
1919+ work correctly both with client-side routing and a non-root public URL.
2020+ Learn how to configure a non-root public URL by running `npm run build`.
2121+ -->
2222+ <title>Bluesky Calendar Heatmap</title>
2323+ </head>
2424+2525+ <body>
2626+ <noscript> You need to enable JavaScript to run this app. </noscript>
2727+ <div id="root"></div>
2828+ <!--
2929+ This HTML file is a template.
3030+ If you open it directly in the browser, you will see an empty page.
3131+3232+ You can add webfonts, meta tags, or analytics to this file.
3333+ The build step will place the bundled scripts into the <body> tag.
3434+3535+ To begin the development, run `npm start` or `yarn start`.
3636+ To create a production bundle, use `npm run build` or `yarn build`.
3737+ -->
3838+ </body>
3939+</html>
···11+{
22+ "compilerOptions": {
33+ "jsx": "react",
44+ /* Visit https://aka.ms/tsconfig to read more about this file */
55+66+ /* Projects */
77+ // "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
88+ // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
99+ // "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
1010+ // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
1111+ // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
1212+ // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
1313+1414+ /* Language and Environment */
1515+ "target": "esnext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
1616+ // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
1717+ // "jsx": "preserve", /* Specify what JSX code is generated. */
1818+ // "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */
1919+ // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
2020+ // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */
2121+ // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
2222+ // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */
2323+ // "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */
2424+ // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
2525+ // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
2626+ // "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
2727+2828+ /* Modules */
2929+ "module": "esnext" /* Specify what module code is generated. */,
3030+ // "rootDir": "./", /* Specify the root folder within your source files. */
3131+ "moduleResolution": "nodenext" /* Specify how TypeScript looks up a file from a given module specifier. */,
3232+ // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
3333+ // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
3434+ // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
3535+ // "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
3636+ // "types": [], /* Specify type package names to be included without being referenced in a source file. */
3737+ // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
3838+ // "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
3939+ // "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */
4040+ // "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */
4141+ // "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */
4242+ // "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */
4343+ // "resolveJsonModule": true, /* Enable importing .json files. */
4444+ // "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */
4545+ // "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */
4646+4747+ /* JavaScript Support */
4848+ // "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
4949+ // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
5050+ // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
5151+5252+ /* Emit */
5353+ // "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
5454+ // "declarationMap": true, /* Create sourcemaps for d.ts files. */
5555+ // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
5656+ // "sourceMap": true, /* Create source map files for emitted JavaScript files. */
5757+ // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
5858+ // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
5959+ // "outDir": "./", /* Specify an output folder for all emitted files. */
6060+ // "removeComments": true, /* Disable emitting comments. */
6161+ // "noEmit": true, /* Disable emitting files from a compilation. */
6262+ // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
6363+ // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
6464+ // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
6565+ // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
6666+ // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
6767+ // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
6868+ // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
6969+ // "newLine": "crlf", /* Set the newline character for emitting files. */
7070+ // "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */
7171+ // "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */
7272+ // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
7373+ // "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */
7474+ // "declarationDir": "./", /* Specify the output directory for generated declaration files. */
7575+ // "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
7676+7777+ /* Interop Constraints */
7878+ // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
7979+ // "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */
8080+ "allowSyntheticDefaultImports": true /* Allow 'import x from y' when a module doesn't have a default export. */,
8181+ "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
8282+ // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
8383+ "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
8484+8585+ /* Type Checking */
8686+ "strict": true /* Enable all strict type-checking options. */,
8787+ "noImplicitAny": false /* Enable error reporting for expressions and declarations with an implied 'any' type. */,
8888+ // "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
8989+ // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
9090+ // "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
9191+ // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
9292+ // "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
9393+ // "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
9494+ // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
9595+ // "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
9696+ // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
9797+ // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
9898+ // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
9999+ // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
100100+ // "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
101101+ // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
102102+ // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
103103+ // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
104104+ // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
105105+106106+ /* Completeness */
107107+ // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
108108+ "skipLibCheck": true /* Skip type checking all .d.ts files. */
109109+ }
110110+}