{"id":18469101,"url":"https://github.com/wfcd/warframe-relic-data","last_synced_at":"2025-04-08T10:32:37.548Z","repository":{"id":40942970,"uuid":"207619523","full_name":"WFCD/warframe-relic-data","owner":"WFCD","description":"📝 Easy to parse data for Relics in Warframe","archived":false,"fork":false,"pushed_at":"2025-03-29T02:01:09.000Z","size":2615,"stargazers_count":6,"open_issues_count":2,"forks_count":3,"subscribers_count":4,"default_branch":"development","last_synced_at":"2025-04-04T05:45:47.263Z","etag":null,"topics":["warframe","warframe-community","warframe-items","warframe-relics"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WFCD.png","metadata":{"files":{"readme":"Readme.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"License","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-09-10T17:16:51.000Z","updated_at":"2025-03-29T11:25:03.000Z","dependencies_parsed_at":"2023-11-12T06:23:29.615Z","dependency_job_id":"bae4386d-274c-4d1f-8995-06a414374566","html_url":"https://github.com/WFCD/warframe-relic-data","commit_stats":{"total_commits":56,"total_committers":6,"mean_commits":9.333333333333334,"dds":0.3928571428571429,"last_synced_commit":"1f70a8ac5d22047c5fc5ad5aea169c0da718b3e7"},"previous_names":[],"tags_count":24,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WFCD%2Fwarframe-relic-data","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WFCD%2Fwarframe-relic-data/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WFCD%2Fwarframe-relic-data/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WFCD%2Fwarframe-relic-data/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WFCD","download_url":"https://codeload.github.com/WFCD/warframe-relic-data/tar.gz/refs/heads/development","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247824191,"owners_count":21002227,"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":["warframe","warframe-community","warframe-items","warframe-relics"],"created_at":"2024-11-06T10:08:56.749Z","updated_at":"2025-04-08T10:32:35.210Z","avatar_url":"https://github.com/WFCD.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# warframe-relic-data (@wfcd/relics)\n\n[![GitHub license](https://img.shields.io/github/license/WFCD/warframe-relic-data?style=for-the-badge)](https://github.com/WFCD/warframe-relic-data/blob/master/License)\n[![Warframe Version](https://img.shields.io/badge/dynamic/json?color=blueviolet\u0026label=Warframe%20Version\u0026query=%24.version\u0026url=https%3A%2F%2Fraw.githubusercontent.com%2FWFCD%2Fwarframe-relic-data%2Fdevelopment%2Fdata%2Fversion.json\u0026style=for-the-badge)](https://github.com/WFCD/warframe-relic-data/blob/development/data/version.json)\n\n## Information\n\nThis repository is part of the build process for [warframe-items](https://github.com/WFCD/warframe-items), \nbut it does work standalone too.\nSo far this repository is probably not complete and is not stable.\nNo build is automatically ran either, so the data is probably quite outdated.\n\n## Data Types\n\nCurrently the data is found in [Relics.json](/data/Relics.json) and [Relics.min.json](/data/Relics.min.json).\n\nTypes are available as Typescript types.\n[Relics.json](/data/Relics.json) is an array of [TitaniaRelic](/src/Types.ts)\n\n## Manually building\n```bash\nnpm install\nnpm start\n```\nAfterwards the data should be available in [/data/Relics.json](/data/Relics.json)\n\n## Integrating into a different build process\n\nFor integration it is recommended to use the [Generator](/src/Generator.ts) directly.\nA very simple example:\n\n```ts\nimport { Generator } from \"warframe-relic-data\";\n\nconst generator = new Generator();\n\nawait generator.generate();\nawait generator.writeData(\"./\", \"Relic\", true);\n```\nThe generated data would now be in `./Relic.json` and `./Relic.min.json`.\n\nAs alternative, `Generator.generate()` returns the full relic data array directly for use in other modules.\n\nFor conviniece this module provides a version checker, which can determine if any of api data is updated.\n\nExample:\n\n```ts\nimport { VersionManager } from \"warframe-relic-data\";\n\nconst manager = new VersionManager(\"./\");\n\nconst needsUpdate = await manager.updateNeeded(); // true if needed\n\n```\n\nA more complete example (using the default [./data/](./data/) directory) can be found here: [Example](./src/Build.ts)\n\n## Credits\n\n- [warframe-items](https://github.com/WFCD/warframe-items) License: [MIT](https://github.com/WFCD/warframe-items/blob/master/LICENSE)\n- [warframe-drop-data](https://github.com/WFCD/warframe-drop-data) License: [MIT](https://github.com/WFCD/warframe-drop-data/blob/main/LICENSE)\n- [warframe-patchlogs](https://github.com/WFCD/warframe-patchlogs) License: [MIT](https://github.com/WFCD/warframe-patchlogs/blob/master/LICENSE)\n- [warframe.market](https://warframe.market)\n- [Warframe Drop Tables](https://n8k6e2y6.ssl.hwcdn.net/repos/hnfvc0o3jnfvc873njb03enrf56.html)\n- [node-fetch](https://github.com/node-fetch/node-fetch/tree/2.x) License: [MIT](https://github.com/node-fetch/node-fetch/blob/2.x/LICENSE.md)\n\nThanks !\n\n## License\n\n[MIT](/License)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwfcd%2Fwarframe-relic-data","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwfcd%2Fwarframe-relic-data","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwfcd%2Fwarframe-relic-data/lists"}