├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── eslint.config.mjs ├── images └── icon.png ├── package.json ├── src ├── extension.ts ├── handlers │ ├── notifications.ts │ └── statusBar.ts ├── interfaces │ ├── i18n.ts │ └── types.ts ├── locales │ ├── de.json │ ├── en.json │ ├── ja.json │ ├── kk.json │ ├── ko.json │ ├── ru.json │ └── zh.json ├── services │ ├── api.ts │ ├── database.ts │ ├── github.ts │ └── team.ts └── utils │ ├── cooldown.ts │ ├── currency.ts │ ├── i18n.ts │ ├── logger.ts │ ├── progressBars.ts │ ├── report.ts │ └── updateStats.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/images/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/package.json -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/handlers/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/handlers/notifications.ts -------------------------------------------------------------------------------- /src/handlers/statusBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/handlers/statusBar.ts -------------------------------------------------------------------------------- /src/interfaces/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/interfaces/i18n.ts -------------------------------------------------------------------------------- /src/interfaces/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/interfaces/types.ts -------------------------------------------------------------------------------- /src/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/locales/de.json -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/locales/ja.json -------------------------------------------------------------------------------- /src/locales/kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/locales/kk.json -------------------------------------------------------------------------------- /src/locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/locales/ko.json -------------------------------------------------------------------------------- /src/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/locales/ru.json -------------------------------------------------------------------------------- /src/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/locales/zh.json -------------------------------------------------------------------------------- /src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/services/api.ts -------------------------------------------------------------------------------- /src/services/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/services/database.ts -------------------------------------------------------------------------------- /src/services/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/services/github.ts -------------------------------------------------------------------------------- /src/services/team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/services/team.ts -------------------------------------------------------------------------------- /src/utils/cooldown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/utils/cooldown.ts -------------------------------------------------------------------------------- /src/utils/currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/utils/currency.ts -------------------------------------------------------------------------------- /src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/utils/i18n.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /src/utils/progressBars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/utils/progressBars.ts -------------------------------------------------------------------------------- /src/utils/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/utils/report.ts -------------------------------------------------------------------------------- /src/utils/updateStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/src/utils/updateStats.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dwtexe/cursor-stats/HEAD/tsconfig.json --------------------------------------------------------------------------------