{"id":29452574,"url":"https://github.com/ayushhemdan/ctc-calculator","last_synced_at":"2026-04-04T20:32:46.418Z","repository":{"id":304116075,"uuid":"1017800079","full_name":"ayushhemdan/CTC-Calculator","owner":"ayushhemdan","description":"A simple and interactive CTC (Cost to Company) Calculator built using React, TypeScript, and Vite. This tool helps users break down their total salary package into individual components like Basic Salary, HRA, DA, LTA, Special Allowance, and more. It supports monthly and yearly modes, allowing easy toggling between the two views.","archived":false,"fork":false,"pushed_at":"2025-07-11T07:00:42.000Z","size":2538,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-11T10:11:31.283Z","etag":null,"topics":["ctc","ctc-calculator","frontend","github-pages","java","react","salary-calculator","tailwindcss","tyoescript","vite","web-development"],"latest_commit_sha":null,"homepage":"https://ayushhemdan.github.io/CTC-Calculator/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ayushhemdan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-11T05:52:49.000Z","updated_at":"2025-07-11T07:21:47.000Z","dependencies_parsed_at":"2025-07-11T10:12:19.527Z","dependency_job_id":"2a623c80-1d75-42e6-954c-68b81bfea103","html_url":"https://github.com/ayushhemdan/CTC-Calculator","commit_stats":null,"previous_names":["ayushhemdan/ctc-calculator"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ayushhemdan/CTC-Calculator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayushhemdan%2FCTC-Calculator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayushhemdan%2FCTC-Calculator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayushhemdan%2FCTC-Calculator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayushhemdan%2FCTC-Calculator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ayushhemdan","download_url":"https://codeload.github.com/ayushhemdan/CTC-Calculator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ayushhemdan%2FCTC-Calculator/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265213021,"owners_count":23728645,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ctc","ctc-calculator","frontend","github-pages","java","react","salary-calculator","tailwindcss","tyoescript","vite","web-development"],"created_at":"2025-07-13T22:09:08.845Z","updated_at":"2025-12-30T22:07:39.791Z","avatar_url":"https://github.com/ayushhemdan.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# React + TypeScript + Vite\n\nThis template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.\n\nCurrently, two official plugins are available:\n\n- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) for Fast Refresh\n- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh\n\n## Expanding the ESLint configuration\n\nIf you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:\n\n```js\nexport default tseslint.config([\n  globalIgnores(['dist']),\n  {\n    files: ['**/*.{ts,tsx}'],\n    extends: [\n      // Other configs...\n\n      // Remove tseslint.configs.recommended and replace with this\n      ...tseslint.configs.recommendedTypeChecked,\n      // Alternatively, use this for stricter rules\n      ...tseslint.configs.strictTypeChecked,\n      // Optionally, add this for stylistic rules\n      ...tseslint.configs.stylisticTypeChecked,\n\n      // Other configs...\n    ],\n    languageOptions: {\n      parserOptions: {\n        project: ['./tsconfig.node.json', './tsconfig.app.json'],\n        tsconfigRootDir: import.meta.dirname,\n      },\n      // other options...\n    },\n  },\n])\n```\n\nYou can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:\n\n```js\n// eslint.config.js\nimport reactX from 'eslint-plugin-react-x'\nimport reactDom from 'eslint-plugin-react-dom'\n\nexport default tseslint.config([\n  globalIgnores(['dist']),\n  {\n    files: ['**/*.{ts,tsx}'],\n    extends: [\n      // Other configs...\n      // Enable lint rules for React\n      reactX.configs['recommended-typescript'],\n      // Enable lint rules for React DOM\n      reactDom.configs.recommended,\n    ],\n    languageOptions: {\n      parserOptions: {\n        project: ['./tsconfig.node.json', './tsconfig.app.json'],\n        tsconfigRootDir: import.meta.dirname,\n      },\n      // other options...\n    },\n  },\n])\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayushhemdan%2Fctc-calculator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fayushhemdan%2Fctc-calculator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayushhemdan%2Fctc-calculator/lists"}