gta-v-data
v1.0.2
Published
JS data & TS declarations for GTA V game data!
Readme
gta-v-data
This is a wrapper module for DurtyFree's GTA V JSON data dump.
Includes type declarations and exports types collections.
A super short usage of the module:
import { vehicles, VehicleModel, vehicleHandlings } from "gta-v-data";
import { log } from "console";
for (let vehicle of vehicles) {
if (vehicle.Name === VehicleModel.Airbus) {
log("Found Airbus!");
log(vehicleHandlings[VehicleHandlingId.AIRBUS]);
};
}Currently I have made exports and declarations only for vehicles, weapons, train tracks, time cycles, radios, musics and dlc names.
Enjoy!
If you find any problems with the package or you're interested in helping, message me on Telegram: https://t.me/artificialsentience.
Changelog
| Date | Version | Description | | --- | --- | --- | | 2025-10-01 11:22 | 1.0.0 | Publish | | 2025-10-01 11:29 | 1.0.1 | Clean dist | | 2025-10-01 11:35 | 1.0.2 | Fix missing README on NPM? |
Copyright © 2025 37o1
