{"id":50699442,"url":"https://github.com/overextended/fivem-ts","last_synced_at":"2026-06-09T08:30:32.640Z","repository":{"id":216941379,"uuid":"742728506","full_name":"overextended/fivem-ts","owner":"overextended","description":"A boilerplate for building FiveM resources with TypeScript.","archived":false,"fork":false,"pushed_at":"2026-05-23T15:57:04.000Z","size":147,"stargazers_count":50,"open_issues_count":0,"forks_count":43,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-05-23T17:25:48.630Z","etag":null,"topics":["boilerplate","fivem","gta5","typescript"],"latest_commit_sha":null,"homepage":"https://overextended.dev/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/overextended.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-01-13T07:24:30.000Z","updated_at":"2026-05-23T15:57:08.000Z","dependencies_parsed_at":"2024-01-19T13:30:18.107Z","dependency_job_id":"19954e5f-97ee-496a-932d-a78aabf52e4f","html_url":"https://github.com/overextended/fivem-ts","commit_stats":null,"previous_names":["overextended/fivem-typescript-boilerplate","overextended/fivem-ts"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/overextended/fivem-ts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/overextended%2Ffivem-ts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/overextended%2Ffivem-ts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/overextended%2Ffivem-ts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/overextended%2Ffivem-ts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/overextended","download_url":"https://codeload.github.com/overextended/fivem-ts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/overextended%2Ffivem-ts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34098776,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["boilerplate","fivem","gta5","typescript"],"created_at":"2026-06-09T08:30:31.343Z","updated_at":"2026-06-09T08:30:32.635Z","avatar_url":"https://github.com/overextended.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FiveM TypeScript Boilerplate\n\nA template for creating FiveM resources with TypeScript.\n\n## Getting started\n\n\u003e [!NOTE]\n\u003e Install [Bun](https://bun.com) and [Git](https://git-scm.com/) if you don't already have them.\n\nUse any of the options below to initialise your resource.\n\n### Using [bun create](https://bun.com/docs/runtime/templating/create)\n\n```bash\nbun create overextended/fivem-ts \u003cname\u003e\n```\n\n### Using [GitHub CLI](https://cli.github.com/)\n\n```bash\ngh repo create \u003cname\u003e --template=overextended/fivem-ts\n```\n\n### Alternative methods\n\n- [Create a new repository from the template](https://github.com/new?template_name=fivem-ts\u0026template_owner=overextended)\n- [Download the template directly](https://github.com/overextended/fivem-ts/archive/refs/heads/main.zip)\n\n## Setup\n\nInitialise your project to set the project name and optionally scaffold a new web app.\n\n```bash\nbun install\nbun run init\n```\n\nCustomise `package.json` with the author, repository, and any other relevant information. This information is added to the fxmanifest when building the project.\n\n## Scripts\n\n### `bun tsd`\n\nBuild all resource files in production mode using [tsdown](https://tsdown.dev/).\n\n### `bun dev`\n\nRun [tsdown](https://tsdown.dev/) in watch mode, to actively rebuild resource files as they are modified.\n\n### `bun lint`\n\nRun [Oxlint](https://oxc.rs/docs/guide/usage/linter.html) to analyse your project for potential errors, bugs, and code quality issues.\n\n### `bun format`\n\nRun [Oxfmt](https://oxc.rs/docs/guide/usage/formatter.html) to automatically reformat your project and ensure consistent code styling.\n\n### `bun webdev`\n\nRuns the [Vite](https://vite.dev/) dev server for live web development.\n\n### `bun webbuild`\n\nBuilds your web project in production mode.\n\n### `bun run build`\n\nRuns the `bun tsd` and `bun webbuild` scripts to create a complete production-ready build of your project.\n\n## Layout\n\n### [/locales/](locales)\n\nContains translation files used with the [ox_lib](https://overextended.dev/ox_lib/Modules/Locale/Shared) locales module.\n\n### [/public/](public)\n\nStatic assets served directly without processing or bundling.\n\n### [/resource/](resource)\n\nMain project source code.\n\n- [`client`](resource/client) – client modules\n- [`common`](resource/common) – shared modules\n- [`server`](resource/server) – server modules\n\n### [/scripts/](scripts)\n\nScripts used during project development.\n\n### [/types/](types)\n\nType definitions used across the project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foverextended%2Ffivem-ts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foverextended%2Ffivem-ts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foverextended%2Ffivem-ts/lists"}