{"id":22379104,"url":"https://github.com/davyjonescodes/tplparserjs","last_synced_at":"2026-02-27T05:03:48.893Z","repository":{"id":254181593,"uuid":"845664459","full_name":"DavyJonesCodes/TPLParserJS","owner":"DavyJonesCodes","description":"A TypeScript library for parsing Photoshop TPL (Tool Preset) files and converting the data into a structured JSON format.","archived":false,"fork":false,"pushed_at":"2024-08-21T22:31:43.000Z","size":151,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-31T10:51:26.185Z","etag":null,"topics":["automation","cli","data-extraction","image-editing","javascript","json","library","photoshop","tool-preset","tpl","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DavyJonesCodes.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":"2024-08-21T17:27:11.000Z","updated_at":"2024-12-02T03:23:14.000Z","dependencies_parsed_at":"2024-08-21T22:59:15.887Z","dependency_job_id":"870b1838-96a5-420e-9e1f-96b0f7baaf62","html_url":"https://github.com/DavyJonesCodes/TPLParserJS","commit_stats":null,"previous_names":["davyjonescodes/tplparserjs"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/DavyJonesCodes/TPLParserJS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DavyJonesCodes%2FTPLParserJS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DavyJonesCodes%2FTPLParserJS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DavyJonesCodes%2FTPLParserJS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DavyJonesCodes%2FTPLParserJS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DavyJonesCodes","download_url":"https://codeload.github.com/DavyJonesCodes/TPLParserJS/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DavyJonesCodes%2FTPLParserJS/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29885799,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T23:51:21.483Z","status":"online","status_checked_at":"2026-02-27T02:00:06.759Z","response_time":57,"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":["automation","cli","data-extraction","image-editing","javascript","json","library","photoshop","tool-preset","tpl","typescript"],"created_at":"2024-12-04T23:08:59.655Z","updated_at":"2026-02-27T05:03:48.864Z","avatar_url":"https://github.com/DavyJonesCodes.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TPLParserJS\r\n\r\n\u003cp align=\"center\"\u003e\r\n  \u003cimg src=\"https://raw.githubusercontent.com/DavyJonesCodes/TPLParserJS/main/assets/logo.png\" alt=\"Logo\" height=\"128px\"\u003e\r\n\u003c/p\u003e\r\n\r\n\u003cp align=\"center\"\u003e\r\n  \u003cimg src=\"https://img.shields.io/badge/javascript-323330?style=for-the-badge\u0026logo=javascript\u0026logoColor=F7DF1E\" /\u003e\r\n  \u003cimg src=\"https://img.shields.io/badge/typescript-%23007ACC.svg?style=for-the-badge\u0026logo=typescript\u0026logoColor=white\" /\u003e\r\n  \u003cimg src=\"https://img.shields.io/badge/adobe%20photoshop-%2331A8FF.svg?style=for-the-badge\u0026logo=adobe%20photoshop\u0026logoColor=white\"/\u003e\r\n\u003c/p\u003e\r\n\r\n# 🎨 TPLParserJS\r\n\r\nWelcome to **TPLParserJS**! 🛠️ This JavaScript/TypeScript package is designed to help you parse Photoshop TPL (Tool Preset) files and extract the data into a friendly JSON format. Perfect for anyone who wants to dive deep into TPL files and understand their inner workings! 💡\r\n\r\n## ✨ Features\r\n\r\n- 🔍 **Parse Photoshop TPL files** with ease.\r\n- 🗂️ **Extract tool names, types, and properties** into JSON format.\r\n- 💾 **Save the extracted data** for further use or analysis.\r\n\r\n## 🚀 Installation\r\n\r\nYou can easily install TPLParserJS via npm:\r\n\r\n```bash\r\nnpm install tpl-parser\r\n```\r\n\r\n## 🛠️ Usage\r\n\r\n### Importing and Using the Library\r\n\r\nHere's a quick example of how to use TPLParserJS in your JavaScript/TypeScript project:\r\n\r\n```typescript\r\nimport { TPLReader } from \"tpl-parser\";\r\n\r\nconst filePath = \"path/to/yourfile.tpl\";\r\nconst reader = new TPLReader(filePath);\r\nconst tplData = reader.readTpl();\r\nreader.saveToJson(\"output.json\");\r\n```\r\n\r\n### Command-Line Interface\r\n\r\nTPLParserJS also includes a handy command-line interface for quick parsing:\r\n\r\n```bash\r\ntpl-parser path/to/yourfile.tpl -o output.json\r\n```\r\n\r\n## 🤝 Contributions\r\n\r\nContributions are welcome! 🎉 If you'd like to contribute to TPLParserJS, feel free to fork the repository and submit a pull request. If you have any questions or need guidance, don't hesitate to contact me at [devjonescodes@gmail.com](mailto:devjonescodes@gmail.com).\r\n\r\n## 📄 License\r\n\r\nThis project is licensed under the Creative Commons Attribution-NonCommercial 4.0 International License. For more details, see the [LICENSE](./LICENSE) file. For commercial use, please contact [Dev Jones](mailto:devjonescodes@gmail.com).\r\n\r\n## 📬 Contact\r\n\r\nIf you have any questions, suggestions, or just want to say hi, feel free to reach out via email: [devjonescodes@gmail.com](mailto:devjonescodes@gmail.com). We'd love to hear from you! 😊\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavyjonescodes%2Ftplparserjs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavyjonescodes%2Ftplparserjs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavyjonescodes%2Ftplparserjs/lists"}