{"id":16186940,"url":"https://github.com/robloach/tiledexportextensions","last_synced_at":"2026-02-09T16:31:06.778Z","repository":{"id":199876810,"uuid":"703970357","full_name":"RobLoach/TiledExportExtensions","owner":"RobLoach","description":"Tiled Export Plugins","archived":false,"fork":false,"pushed_at":"2023-10-16T23:11:30.000Z","size":18,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-08-03T06:25:38.226Z","etag":null,"topics":["tiled","tiled-map-editor","tiled-plugins"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"zlib","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RobLoach.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}},"created_at":"2023-10-12T09:21:43.000Z","updated_at":"2024-06-09T21:56:25.000Z","dependencies_parsed_at":"2024-10-10T07:19:54.704Z","dependency_job_id":"59c0e61f-dffc-4303-bcff-604447774e02","html_url":"https://github.com/RobLoach/TiledExportExtensions","commit_stats":null,"previous_names":["robloach/tiled-plugins","robloach/tiledextensionextras"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RobLoach/TiledExportExtensions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobLoach%2FTiledExportExtensions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobLoach%2FTiledExportExtensions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobLoach%2FTiledExportExtensions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobLoach%2FTiledExportExtensions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RobLoach","download_url":"https://codeload.github.com/RobLoach/TiledExportExtensions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobLoach%2FTiledExportExtensions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29272709,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T13:47:44.167Z","status":"ssl_error","status_checked_at":"2026-02-09T13:47:43.721Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["tiled","tiled-map-editor","tiled-plugins"],"created_at":"2024-10-10T07:19:53.296Z","updated_at":"2026-02-09T16:31:06.760Z","avatar_url":"https://github.com/RobLoach.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TiledExportExtensions\n\nA collection of [Tiled](https://www.mapeditor.org/) extensions to assist with exporting Tiled map data.\n\n## Extensions\n\nThe following is a list of the extensions included in this pack:\n\n1. [Embed JSON Map Format](#embed-json-map-format)\n1. [Minified JSON Map Format](#minified-json-map-format)\n\n### Embed JSON Map Format\n\nThe [Embed JSON Map Format](EmbedJSONMapFormat.js) Tiled plugin will embed all images directly in the JSON format, [Base64](https://en.wikipedia.org/wiki/Base64) encoded, as `*.embed.json` files. It will add the `image` data to a base64 encoded [data URI scheme](https://en.wikipedia.org/wiki/Data_URI_scheme) `imagedata` property, along add the size of the image to `imagesize`.\n\n#### Before\n\n``` json\n{\n    \"image\": \"desert.png\"\n}\n```\n\n#### After\n\n``` json\n{\n    \"image\": \"desert.png\",\n    \"imagedata\": \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUg...\",\n    \"imagesize\": 37830\n}\n```\n\n### Minified JSON Map Format\n\nThe [Minified JSON Map Format](MinifiedJSONMapFormat.js) Tiled plugin will export minified JSON files `*.min.json`, to decrease the output file size by removing the whitespace. This can already be accomplished by using Tiled's \"Minimize output\", but having the explicit file format allows you force minification if desired, despite Tiled's settings.\n\n#### Before\n\n``` json\n{ \"compressionlevel\":-1,\n \"height\":40,\n \"infinite\":false,\n \"layers\":[\n        {\n         \"data\":[...\n```\n\n#### After\n\n``` json\n{\"compressionlevel\":-1,\"height\":40,\"infinite\":false,\"layers\":[{\"data\":[...\n```\n\n## Installation\n\nTo install the extensions...\n\n1. Open Tiled and go to _Edit \u003e Preferences \u003e Plugins_ and click the **Open** button to open the extensions directory.\n2. [Download](https://github.com/robloach/tiled-plugins/archive/master.zip)\n3. Extract the files to your extensions directory. The scripts can be directly in the extensions directory or a subdirectory. Alternatively, clone this git repository into the extensions directory:\n\n      - **Windows**\n       `C:/Users/%USERNAME%/AppData/Local/Tiled/extensions/`\n      - **macOS**\n      `~/Library/Preferences/Tiled/extensions/`\n      - **Linux**\n      `~/.config/tiled/extensions/`\n4. See the script itself for specific plugin usage instructions\n\n## License\n\nUnless stated otherwise, all works are:\n\n- Copyright (c) 2023 [Rob Loach](https://robloach.net)\n\n... and licensed under:\n\n- [zlib License](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobloach%2Ftiledexportextensions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobloach%2Ftiledexportextensions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobloach%2Ftiledexportextensions/lists"}